Reputation: 27996
I am working on an asp.net 3.5 application and I have a page with table form data. I need to export this to pdf with some additional formating. This page also has some images inside the same table and some outside the table. I want these images to be exported to pdf as well. How can I do it in asp.net 3.5? Do I need to use some paid/free third party control(s).
Please suggest.
Upvotes: 0
Views: 926
Reputation: 3891
You can use iTextSharp for this. You basically create some html structure of the content you want to have in your PDF and use iTextSharp to generate the PDF for you.
Upvotes: 1