Click here to Skip to main content
15,881,852 members
Articles / Web Development / ASP.NET

Creating PDF Documents in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.74/5 (63 votes)
26 Sep 2007CPOL 695K   22.8K   255   85
How to create PDF documents in ASP.NET.

Screenshot - 081_hello_pdf.jpg

Introduction

This short article explains how to create PDF documents from ASP.NET web pages using this free library: http://sourceforge.net/projects/itextsharp/.

The code

First of all, I will create a simple "Hello PDF". Next, I will create a more complex PDF document with tables. To start creating PDF documents, you need to download the iTextSharp library from http://sourceforge.net/projects/itextsharp/ and reference it in your project. The PDF documents are created "on the fly" by the web page "ShowPDF.aspx". This page also does a "Response.Redirect" to the created PDF. We will first import the required namespaces:

VB
Imports System
Imports System.IO
Imports iTextSharp.text
Imports iTextSharp.text.pdf

Next, in the Page_Load event, we find out which document was requested by the user:

VB
Partial Class ShowPDF
   Inherits System.Web.UI.Page
   
   Protected Sub Page_Load(ByVal sender As Object, _
             ByVal e As System.EventArgs) Handles Me.Load
      If Request.QueryString("id") = 1 Then
         ShowHello()
       Else
         ShowTable()
       End If
   End Sub
End Class

The ShowHello function creates a simple document with just one string: "Hello World", and then redirects the user to the newly created document:

VB
Sub ShowHello()
   Dim doc As Document = New Document
   PdfWriter.GetInstance(doc, New FileStream(Request.PhysicalApplicationPath + _
                         "\1.pdf", FileMode.Create))
   doc.Open()
   doc.Add(New Paragraph("Hello World"))
   doc.Close()
   Response.Redirect("~/1.pdf")
End Sub

A more complex example

The function ShowTable is slightly more complex. It also creates a PDF document and redirects the user to it:

VB
Sub ShowTable()
   Dim doc As Document = New Document
   PdfWriter.GetInstance(doc, New FileStream(Request.PhysicalApplicationPath + _
                         "\2.pdf", FileMode.Create))
   doc.Open()
   Dim table As Table = New Table(3)
   table.BorderWidth = 1
   table.BorderColor = New Color(0, 0, 255)
   table.Padding = 3
   table.Spacing = 1
   Dim cell As Cell = New Cell("header")
   cell.Header = True
   cell.Colspan = 3
   table.AddCell(cell)
   cell = New Cell("example cell with colspan 1 and rowspan 2")
   cell.Rowspan = 2
   cell.BorderColor = New Color(255, 0, 0)
   table.AddCell(cell)
   table.AddCell("1.1")
   table.AddCell("2.1")
   table.AddCell("1.2")
   table.AddCell("2.2")
   table.AddCell("cell test1")
   cell = New Cell("big cell")
   cell.Rowspan = 2
   cell.Colspan = 2
   cell.HorizontalAlignment = Element.ALIGN_CENTER
   cell.VerticalAlignment = Element.ALIGN_MIDDLE
   cell.BackgroundColor = New Color(192, 192, 192)
   table.AddCell(cell)
   table.AddCell("cell test2")
   doc.Add(table)
   doc.Close()
   Response.Redirect("~/2.pdf")
End Sub

Using the iTextSharp library (http://sourceforge.net/projects/itextsharp/) makes it very easy to create PDF documents from web applications.

License

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


Written By
Web Developer
Germany Germany
Florian works as consultant for change- and configuration management for about 7 years. In this environment he is often forced to work with unix, perl and shell scripts.

For more information about change- and configuration management (espacially Serena Dimensions) visit: www.venco.de

For video tutorials about asp.net, ajax, gridviews, ... (in german) visit: www.siore.com

Comments and Discussions

 
AnswerRe: How Can I save this PDF Files? Pin
fstrahberger22-Apr-09 7:18
fstrahberger22-Apr-09 7:18 
QuestionIs it possible to make Paragraph ? Pin
momydia1-Apr-09 6:55
momydia1-Apr-09 6:55 
GeneralRegarding Licenses Pin
Senthil S29-Jan-09 20:00
Senthil S29-Jan-09 20:00 
QuestionPassword Protected Pdf....Please Help me....Urgent Pin
AnishUnnithan13-Nov-08 19:08
AnishUnnithan13-Nov-08 19:08 
GeneralFont size Pin
radhakrishchn5-Nov-08 0:37
radhakrishchn5-Nov-08 0:37 
GeneralRe: Font size Pin
fstrahberger6-Nov-08 4:15
fstrahberger6-Nov-08 4:15 
QuestionNew tables only?? Pin
dherrmann14-Oct-08 1:15
dherrmann14-Oct-08 1:15 
AnswerRe: New tables only?? Pin
fstrahberger6-Nov-08 4:19
fstrahberger6-Nov-08 4:19 
Hi,

> I think you can create new tables only
I don't know anything about eisting tables, I always created new documents from scratch.

>paperformat of the pdf is landscape
Dim document As Document = New Document(PageSize.LETTER.Rotate)


Regards
Florian
GeneralC# Verssion Pin
sheahad13-Jun-08 18:53
sheahad13-Jun-08 18:53 
GeneralRe: C# Verssion Pin
Eihab0079-Oct-08 3:55
Eihab0079-Oct-08 3:55 
GeneralRe: C# Verssion Pin
Arkan#130-Oct-08 8:51
Arkan#130-Oct-08 8:51 
GeneralRe: C# Verssion Pin
fstrahberger6-Nov-08 4:32
fstrahberger6-Nov-08 4:32 
GeneralRe: C# Verssion Pin
kx250f3721-Jul-09 10:32
kx250f3721-Jul-09 10:32 
GeneralRe: C# Verssion Pin
FlorianMayer26-Jul-09 23:26
FlorianMayer26-Jul-09 23:26 
GeneralComplied DLL with AllowPartiallyTrustedCallers Pin
chrisreece15-Apr-08 0:05
chrisreece15-Apr-08 0:05 
GeneralThank you so much Pin
srinivas_gppm23-Mar-08 23:00
srinivas_gppm23-Mar-08 23:00 
QuestionImages? Pin
Johnny J.4-Mar-08 23:42
professionalJohnny J.4-Mar-08 23:42 
AnswerRe: Images? Pin
Johnny J.4-Mar-08 23:47
professionalJohnny J.4-Mar-08 23:47 
AnswerRe: Images? Pin
fstrahberger8-Mar-08 13:14
fstrahberger8-Mar-08 13:14 
QuestionSecurity Error when running in Production Pin
dev_4u200013-Jan-08 21:54
dev_4u200013-Jan-08 21:54 
GeneralRe: Security Error when running in Production Pin
fstrahberger8-Mar-08 13:48
fstrahberger8-Mar-08 13:48 
GeneralFont Pin
Dana M6-Dec-07 4:57
Dana M6-Dec-07 4:57 
Questionwhere did you get the dll Pin
deuce415-Oct-07 15:50
deuce415-Oct-07 15:50 
AnswerRe: where did you get the dll Pin
fstrahberger15-Oct-07 21:41
fstrahberger15-Oct-07 21:41 
GeneralURL to PDF Example Pin
Jim Mac5-Oct-07 8:02
Jim Mac5-Oct-07 8:02 

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

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