Microsoft Gold Certified Partner

Posts Tagged ‘eCommerce’

HTML to PDF easily

Thursday, July 23rd, 2009

I’ve been working on enhancements to our eCommerce framework and needed to produce a PDF version of an invoice. I already had the invoice as an HTML page, so the task was to convert this to PDF.

A company called WebSuperGoo had the solution and it couldn’t be simpler:

WebSupergoo.ABCpdf7.Doc invoiceDoc = new Doc();
invoiceDoc.AddImageUrl(URL);
invoiceDoc.Save(Server.MapPath(“invoice.pdf”));