The text of this article is not in this database — only its details are. Read it on the old site: Creating PDF Files in ASP.NET Using ITextSharp
10 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: Creating PDF Files in ASP.NET Using ITextSharp
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
Former memberPosted Feb 26, 2018, 1:00 PM
Adding something beneficial to this amazing blog, that 'ZetPDF' is one of the amazing PDF software besides these as well.It includes support for annotating the PDF files, having bookmarks navigation and its own PDF the rendering engine, ability to add and remove file attachments, and other similar features.
Former memberPosted Oct 25, 2013, 4:28 AM
Aspose.PDF for .NET is another .NET Library that allows you to create, read, modify and even convert pdf documents to other formats. Check out this App here: http://www.aspose.com/.net/pdf-component.aspx
Sonu SingheditedPosted Dec 28, 2012, 6:35 AMEdited Dec 29, 2012, 11:35 AM
easy n working process.... but how to add whole page in pdf..(how to print full page in pdf)
Sonu SinghPosted Dec 28, 2012, 6:34 AM
very nice article it helps me to create a pdf document for office use..thanks for it..
Honey ChawlaPosted Dec 24, 2012, 12:46 PM
very good article but one thing, if i want to display it in browser then? if you can help me then please send me the code with explanation. Reply Soon
syed tanveerPosted Dec 9, 2012, 2:07 AM
its iTextSharp.dll
syed tanveerPosted Dec 9, 2012, 2:05 AM
when i run this code in my website ..it shows me blank web page....i also added iSharpText dll in it.... ................................................................ my email id is [email protected] ........ plz send me a demo of this project using System; using System.Collections.Generic;using System.IO; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using iTextSharp.text; using iTextSharp.text.pdf; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { var doc1 = new iTextSharp.text.Document(); string path = Server.MapPath("PDF_Files"); PdfWriter.GetInstance(doc1, new FileStream(path + "/Doc1.pdf", FileMode.Create)); doc1.Open(); doc1.Add(new Paragraph("My sample text goes here.")); doc1.Close(); } }
syed tanveerPosted Dec 9, 2012, 2:02 AM
when i run the website after writing this code ..it shw mw blank web page..i need r help code is as follows using System; using System.Collections.Generic;using System.IO; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using iTextSharp.text; using iTextSharp.text.pdf; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { var doc1 = new iTextSharp.text.Document(); string path = Server.MapPath("PDF_Files"); PdfWriter.GetInstance(doc1, new FileStream(path + "/Doc1.pdf", FileMode.Create)); doc1.Open(); doc1.Add(new Paragraph("My sample text goes here.")); doc1.Close(); } }
Terrence HlabanePosted Jul 2, 2012, 7:32 AM
Great article, I like it. Question using this code to add Sql Parameters / data from textbox control to creat the pdf file paragram?
Lajapathy ArunPosted Jun 26, 2012, 8:45 AM
Thank you. Every time you bringing new things to my corner.