Reputation:
How to create editable PDF using ASP.NET. I want to create a Pdf from a master template, edit it (fill some value(input not from database)) and save. Is it possible without using a 3rd party?
If some sample code available it will be great
Upvotes: 1
Views: 4086
Reputation: 1424
You can use Aspose.Pdf.Kit for this purpose. In fact, it can be used either in a ASP.NET or Windows application. You can download the trial version. Have a look at the related documentation; that might be of some help.
Upvotes: 0
Reputation: 36754
I like http://dynamicpdf.com they have a free community edition which allows you to programmatically create PDF's from scratch. The paid products offer much more functionality and they have a designer as well.
Upvotes: 0
Reputation: 99720
You can use the open-source iTextSharp, which is a port from iText (java). Here is a code sample that creates a form with a text field (it's java but the iTextSharp interface is nearly identical)
Upvotes: 1
Reputation: 7181
Maybe you can try the ReportViewer control.
You can create a "report template", assign data to it in runtime (fill in values), render it, and save the result.
Upvotes: 0
Reputation: 17732
I use PDF4NET in a couple of projects, can definitely recommend it. There are code samples on their website.
Upvotes: 1