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 655795
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:38:37+00:00 2026-05-13T22:38:37+00:00

I am using ASP.NET 3.5 with iTextSharp and I have the following code: var

  • 0

I am using ASP.NET 3.5 with iTextSharp and I have the following code:

var templatePath = Server.MapPath(@"~/Templates/template1.pdf");
var newFilePath = Server.MapPath(@"~/TempFiles/new.pdf");

PdfReader pdfReader = new PdfReader(templatePath);
PdfStamper pdfStamper = new PdfStamper(pdfReader, new FileStream(newFilePath, FileMode.Create));
AcroFields pdfFormFields = pdfStamper.AcroFields;
pdfFormFields.SetField("Box1", "007");
pdfFormFields.SetField("Box2", "123456");
pdfStamper.FormFlattening = false;
pdfStamper.Close();
Response.ClearContent();
Response.Buffer = true;
Response.ContentType = "application/pdf";
Response.AddHeader("Content-Disposition", "attachment;filename=new.pdf"));
Response.WriteFile(newFilePath);
Response.End();

The above code fills out a pdf file and saves the new file to the TempFiles folder. It then prompts the user to either save or open the file. Can I achieve the same functionality without saving the file to the TempFiles location?

  • 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-05-13T22:38:38+00:00Added an answer on May 13, 2026 at 10:38 pm

    Yes, you can write directly to the output stream of the response. I haven’t used PdfStamper, but here’s how I do it when generating new PDFs:

    doc = new iTextSharp.text.Document(PageSize.A4);
    writer = iTextSharp.text.pdf.PdfWriter.GetInstance(doc, Response.OutputStream);
    writer.SetFullCompression();
    doc.Open();
    

    It looks like you pass a stream into the PdfStamper constructor, so the following should work:

    var templatePath = Server.MapPath(@"~/Templates/template1.pdf");
    
    PdfReader pdfReader = new PdfReader(templatePath);
    Response.ClearContent();
    Response.Buffer = true;
    Response.ContentType = "application/pdf";
    Response.AddHeader("Content-Disposition", "attachment;filename=new.pdf"));
    PdfStamper pdfStamper = new PdfStamper(pdfReader, Response.OutputStream);
    AcroFields pdfFormFields = pdfStamper.AcroFields;
    pdfFormFields.SetField("Box1", "007");
    pdfFormFields.SetField("Box2", "123456");
    pdfStamper.FormFlattening = false;
    pdfStamper.Close();
    Response.End();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i m using asp.net mvc2 for my application. i have a view that accepts
Using ASP.NET as programming language on IIS Server. the Database is access and i
I am using ASP.NET MVC2 and have a problem. After Log off I manually
I have been using asp.net programming just from few months and I have to
Using asp.net MVC in c#, I am making a call to a stored procedure
Using ASP.NET MVC2, how would I go about creating a WML view for a
I am using ASP.NET MVC application. However I am not able to understand the
I am using asp.net calendar with ajax extension in my project. I want to
I am using asp.net webforms; I want to submit a form and keep the
I am using asp.net mvc and I want to fake a http post to

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.