tags:

views:

239

answers:

4

What is required to create a PDF file through an ASP.NET application other than Crystal Reports?

+2  A: 

You can use iText#, it's based on a similar Java project.

http://itextsharp.sourceforge.net/

You don't need Crystal Reports in conjunction with this. If you need something more robust (but pricey), I have used this to great success with complex PDFs:

http://www.pdflib.com/

BobbyShaftoe
A: 

One possible library is iTextSharp. Apparently iText is a huge deal, but I didn't really see it when working with iTextSharp on a requirement, but that was years ago.

Stuart Branham
A: 

The easiest method is use a third party library. I've used ASPOSE.PDF in the past with good results.

http://www.aspose.com/categories/file-format-components/aspose.pdf-for-.net-and-java/default.aspx

I also tried PDF Sharp, its open source, but wasn't as flexable.

http://pdfsharp.com/PDFsharp/

Mike Bennett
A: 

You have several open source options here.

MMind