Click here to Skip to main content
Licence CPOL
First Posted 31 Mar 2009
Views 17,758
Bookmarked 20 times

PDF file creation using the ItextSharp library with ASP.NET

By | 31 Mar 2009 | Article
PDF file creation using the ItextSharp library with ASP.NET and C#, and deleting the file from the server after displaying it.

Introduction

Today I am going to explain how to create a PDF file on a server using ASP.NET and how to delete it from the server.

I was trying to create a PDF file with help of ItextSharp, which was relatively easy task. After creation, I wanted to load this file on the web browser for the user. Once loaded, I wanted to delete the file from the server. I searched on the web regarding this topic, but found almost nothing of help. After a lot of thinking, I came up with this solution. If you have a better solution, please share it with me.

Background

The primary requirements for this application are a PDF file template, a data source (data that will go inside the PDF file), and the ItextSharp library. Download ItextSharp from SourceForge.net. I would like to thank the authors of ItextSharp for creating such a nice library which makes PDF creation a piece of cake.

Please read this article for understanding how to create a PDF file.

Using the code

I will explain how to load the PDF file into a web browser from a server directory once the PDF file is created, we will also see how to delete the file once it is displayed.

Step 1: Create a directory on the server, for example "/pdfFactory/". Use this folder as the output path from the PDF file creation method.

Step 2: Once the file is created, construct a thread:

protected void Page_Load(object sender, EventArgs e){
    .
    .
    .

    string filePath = Server.MapPath("/pdfFactory/")+"/pdfFile.pdf"; 
    if (File.Exist(filePath)){
        Thread t = new Thread( deleteMe); 

        t.Start(filePath); 

        Response.Redirect("/pdfFactory/pdfFile.pdf"); 
    }
    .
    .
    .
}

static void deleteMe(object fileObject){
    string filePath = (string) fileObject; 
    Thread.Sleep(5000); 
    if(File.Exist(filePath)){
    File.Delete(filePath); 
    }
}

Explanation

Once the PDF file is created inside the "pdfFactory" folder, it can be loaded directly to the browser with a relative URL. The Response.Redirect method uses this path to load the newly created PDF file into the web browser. Once the file is redirected with the above method, server side control is lost. So, we need another event to delete the file from the client browser. But, it requires another server call from the client. To overcome this problem, we are using a Thread.

The created thread "t" calls the deleteMe method. This method takes a filePath parameter. Once started, it sleeps until the file is loaded to the client machine. After 5000 milliseconds, the server deletes this file with the File object.

If the client wishes to save this file, the client can save it on their local machine. This way, the server is not loaded with a lot of files.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Abhay Mhatre

Software Developer
CSU Office of Chancellor
United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmvpOriginalGriff20:41 3 May '12  
QuestionPDF header signature not found Pinmemberbarkatkhan1:51 23 Feb '12  
GeneralMy vote of 1 PinmemberJRiggs10:16 14 Aug '09  
GeneralMy vote of 1 PinmemberMember 42331451:53 14 Jun '09  
GeneralMy vote of 1 PinmemberAkash Kava23:27 12 May '09  
GeneralMy vote of 1 PinmemberRichard Deeming8:48 7 Apr '09  
GeneralMy vote of 1 PinmemberRui Holdorf13:25 6 Apr '09  
GeneralRe: My vote of 1 PinmemberAbhay Mhatre8:06 7 Apr '09  
QuestionPDF Create? PinmemberZeroInfinity23:30 1 Apr '09  
AnswerRe: PDF Create? PinmemberAbhay Mhatre8:05 7 Apr '09  
GeneralRe: PDF Create? PinmemberHoosier3:01 17 Jul '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 31 Mar 2009
Article Copyright 2009 by Abhay Mhatre
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid