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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T11:27:42+00:00 2026-05-11T11:27:42+00:00

I’m creating a PDF file on the fly using ITextSharp and ASP.NET 1.1. My

  • 0

I’m creating a PDF file on the fly using ITextSharp and ASP.NET 1.1. My process is as follows –

  • Create file on server
  • Redirect browser to newly created PDF file so it is displayed to user

What I’d like to do is delete the PDF from the server as soon it is displayed in the users browser. The PDF file is large so it is not an option to hold it in memory, an initial write to the server is required. I’m currently using a solution that periodically polls for files then deletes them, but I’d prefer a solution that deletes the file immediately after it has been downloaded to the client machine. Is there a way to do this?

  • 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. 2026-05-11T11:27:43+00:00Added an answer on May 11, 2026 at 11:27 am

    Instead of redirecting the browser to the created file you could serve the file yourself using you own HttpHandler. Then you could delete the file immediately after you served it or you could even create the file in memory.

    Write the PDF file directly to the Client:

    public class MyHandler : IHttpHandler {     public void ProcessRequest(System.Web.HttpContext context) {         context.Response.ContentType = 'application/pdf';         // ...         PdfWriter.getInstance(document, context.Response.OutputStream);         // ... 

    or read an already generated file ‘filename’, serve the file, delete it:

    context.Response.Buffer = false; context.Response.BufferOutput = false; context.Response.ContentType = 'application/pdf';  Stream outstream = context.Response.OutputStream; FileStream instream =      new FileStream(filename, FileMode.Open, FileAccess.Read, FileShare.Read);  byte[] buffer = new byte[BUFFER_SIZE]; int len; while ((len = instream.Read(buffer, 0, BUFFER_SIZE)) > 0) {     outstream.Write(buffer, 0, len); } outstream.Flush(); instream.Close();  // served the file -> now delete it  File.Delete(filename); 

    I didn’t try this code. This is just how I think it would work …

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.