I need to create a pdf from .aspx page. In .aspx page user will enter so many values in textbox and gridview. It also has some tabs with different sections. I did used iTextSharp for creating simple pdf. But here i need to get the values from the page and need to read the tab controls. So is it posible to use iTextSharp or is there any opensource dll available for converting .aspx to pdf..
Give me some idea?
Thanks..
By using ITextsharp library,this can be done by using HTMLWorker :
First Create String builder;
Then add pdf heading from textbox value as:
Then add subject to pdf from textbox value as:
Then add paragraphs from textbox value as:
for table creation take values in string[] array
And so on.You can create pdf from textbox values of aspx page.