cableload
cableload

Reputation: 4375

Asp.net webform to pdf

I have a simple asp.net registration form where users fill out the information to register. I have it captured in an oracle database.

Is there a way i can generate a pdf from the data in the database and show it like a actual pdf form?

I looked at itextsharp and it has some licensing restrictions. What are some of the other free solutions that stackoverflow users has used that will help my problem?

Thanks

Upvotes: 1

Views: 1165

Answers (2)

user1914292
user1914292

Reputation: 1556

You can get the form with contents as PDF, by using the service pdfmyform.com - this is a commercial service that lets you convert the whole webpage including form contents in one go to a PDF, without any development. There's a free plan for limited use.

Upvotes: 0

Karl Anderson
Karl Anderson

Reputation: 34846

itextsharp is free to use for non-commercial development, but if you use for commercial development then you either need to obtain a license or make your code available under the GPL license.

Here are some alternatives to itextsharp:

  • PDFSharp is a free option, however its latest release is from 2009.

  • There is an open-source version of PDFjet.

  • PDF Clown

Upvotes: 3

Related Questions