I have a PDF document storted as binary in the SQL Server database. I have rendered the binary document as PDF inside an iFrame using HTTP Handler.

Now, I want to allow the users to edit the data in the PDF file shown inside the iFrame and also populate some of the fields in the PDF automatically on clicking a button.

After all the fields are populated, the filled PDF document in the iFrame should be saved back as binary in the database.

How can this be implemented using ASP.NET 4.0?

link|improve this question

0% accept rate
feedback

3 Answers

This is the difficult part of your question:

Now, I want to allow the users to edit the data in the PDF file shown inside the iFrame and also populate some of the fields in the PDF automatically on clicking a button.

You're going to need a third party tool that provides an API for filling form fields in a PDF. There are a few cheap ones and a few expensive ones. The only ones I've ever used successfully are

But there is also some open source projects:

These tools can be used to fill in the fields of a PDF, as well as for other basic edits to PDFs, but things like editing text outside of form fields is very tough to do. There are entire software suites built around PDF authoring (think Adobe Acrobat). They should all provide ways to give you the new PDF (as a file, a byte array, a stream) so you can persist it back to the database.

You might have better luck allowing users to download and edit Word documents (or whatever equivalent you choose) and converting the end result into PDF. Aspose again could help with filling form fields in a document as well as the conversion from Doc to PDF.

I am not affiliated with Aspose in any way -- it just seems to be the tool of the trade for these sort of tasks.

link|improve this answer
I had a look at activePDF, Aspose and iText. They provide ability to fill the form fields on the PDF but they do not provide the ability to display the PDF in the web page and get user's inputs and then save the file in the database. I found one tool RADPDF to be very useful and meet all my needs except digitally signing the PDF document. – Anand Nov 15 '11 at 1:20
feedback

I think you're looking for http://www.radpdf.com/

link|improve this answer
I tried this component. It meets all my needs except digital signature. This doesn't support signature at this moment. – Anand Nov 15 '11 at 1:20
feedback

I have implemented this by adding HTTP Submit button inside the Adobe Acrobat (interactive) form. When the submit button is clicked, the PDF document will be posted to the server (an ASPX page). ASPX page will read the PDF document posted as stream, convert that into bytes and store in the database.

link|improve this answer
This will only work if your clients have Adobe Acrobat Standard or Professional installed. If they have Adobe Reader, only FDF and XFDF can be submitting via HTTP (PDF won't be). See: help.adobe.com/en_US/acrobat/pro/using/… – userx Nov 17 '11 at 8:51
No, you can submit the PDF even if the client doesn't have Adobe Acrobat. I have tried this with only Adobe Reader and it worked fine. – Anand Jan 10 at 6:17
Are you sure? The documentation I linked to is pretty clear "Note: If the users that fill in the PDF form are using Adobe Reader, you must choose either FDF or XFDF for the Export Format option.", ref: help.adobe.com/en_US/acrobat/pro/using/… – userx Jan 10 at 8:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.