Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9051355
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T12:53:08+00:00 2026-06-16T12:53:08+00:00

I would like to learn how to create an online PDF WEB Form using

  • 0

I would like to learn how to create an online PDF WEB Form using Visual Studios 2010 that can store the data into my SQL Database just not sure where to start.

I found a book called “iText In Action” but seems like it is more for Java developers. Are there any books that will be more geared towards C# and creating the web pdf forms? Any help on where I should start would be appreciated.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T12:53:10+00:00Added an answer on June 16, 2026 at 12:53 pm

    You can try iTextSharp, the .NET port from Java iText.
    I have found this resource
    https://web.archive.org/web/20211020001758/https://www.4guysfromrolla.com/articles/030911-1.aspx

    I have used this library for making PDF Forms and it is very straightforward.
    The process it will be something like Create a PDF form with an external tool like Adobe Acrobat and then, your program have to read it and set the fields with the data you need. Something like this:

    using (var existingFileStream = File.OpenRead(_pdfTemplatePath))
    using (var memoryStream = new MemoryStream())
    {
        // Open existing PDF  
        var pdfReader = new PdfReader(existingFileStream);
    
        // PdfStamper, which will create  
        var stamper = new PdfStamper(pdfReader, memoryStream);
    
        var form = stamper.AcroFields;
    
        form.SetField("Field_A", yourDataForA);
        form.SetField("Field_B", yourDataForB);
        form.SetField("Field_C", yourDataForC);
    
        stamper.FormFlattening = true;
        stamper.Close();
        pdfReader.Close();
    
        string cd = "inline";
    
        // And then send to the browser
        HttpContext.Current.Response.Clear();
        HttpContext.Current.Response.ContentType = "application/pdf";
        HttpContext.Current.Response.AddHeader("content-disposition", 
            string.Format("{0};filename={1}.pdf", cd, string.IsNullOrEmpty(_theFilename)
                                                                         ? "documento"
                                                                         : _theFilename));
        HttpContext.Current.Response.BinaryWrite(memoryStream.ToArray());
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to create an application which can learn to classify a sequence
As an exercise to learn Ruby, I would like to create a script that
I would like to learn the basics of digital certificates. Including how to create
I would like to learn how I can use nested template tags where the
I'm trying to learn SQL and for demonstration purposes I would like to create
So I am trying to create a form in Visual Studio C# 2010 Express
I would like to learn the difference between XMLReader.Create and new XMLTextReader() to read
I have NOT done much of web-developing and I would like to learn about
I would like to learn using projects in SVN. Thats why I would like
This can easily be scripted, but I would like to learn how to do

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.