Friday, October 23, 2009

Create PDF in ASP.NET

Earlier I have created PDF file from a .NET (web) application with the help of XSL:FO. But my experience was not very good. So I have found a Tutorial for creating PDFs. With this tool you can create PDF files with OO technics, this sounds much better.

1 comment:

  1. I'm using PDF Duo .NET component by duodimension company.
    For creating a PDF I just put html string:

    conv.OpenHTML("This is a new page");
    conv.SavePDF("new.pdf");

    ..easily

    ReplyDelete