tags:

views:

1064

answers:

6

how to create editable PDF using ASP.NET. i want to create a PDf from master tamplate, edit it (fill some value(input not from database)) and save. Is it possible without using 3rd party. if some sample code available it will be gr8....

+1  A: 

I use PDF4NET in a couple of projects, can definitely recommend it. There are code samples on their website.

Alexander Kojevnikov
A: 

read this for a free solution.

Toni Ruža
A: 

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.

Biri
+1  A: 

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)

Mauricio Scheffer
A: 

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.

Brian Boatright
A: 

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.

Code.Guru