Top
ArticleCity.comArticle Categories How to Convert ASPX to PDF

How to Convert ASPX to PDF

Originally posted on https://ironpdf.com/tutorials/aspx-to-pdf/

 

Tutorial shows how to save an ASPX page as a PDF in ASP Dot Net Web Applications.

Converting an ASPX File to a PDF Document

Follow these guiding steps:

  1. Install an ASPX to PDF Converter such as IronPDF into Visual Studio
  2. Start by converting an ASPX web form. See example Invoice.aspx
  3. Configure ASPX to PDF Settings for your example
  4. Add optional Headers and Footers to PDF document
  5. Trigger Page Breaks and use Async + Multithreading
  6. Download aspx page in PDF format using C#

How to Convert ASPX for ASP .Net to PDF

Microsoft Web Form Applications for ASP.Net are commonly used in the development of sophisticated websites, online banking, intranets and accounting systems. One common feature of ASP.Net (ASPX) websites is to generate dynamic PDF files such as invoices, tickets or management reports for users to download in pdf format.

This tutorial shows how to use the IronPDF software component for .NET to turn any ASP.Net web form into a PDF (ASP .Net to PDF). HTML normally rendered as a web page, will be used to render as a PDF for download or viewed in a web browser. The attached source project will show you how to convert a webpage to PDF in Asp .net using C#.

We achieve this HTML to PDF conversion (ASPX to PDF) when rendering webpages using the IronPDF library and its AspxToPdf Class.

Step 1: Getting Set Up

In Visual Studio, we need to add the IronPdf .NET PDF class library to our website application.

Right click on the project in solution explorer and select “Manage Nuget Packages” from the menu. From there we can browse (search) for “IronPDF” and install the latest version of the IronPDF .Net PDF library,

This will work in any .Net Framework Website project using Framework 4 and above. VB.Net and C# projects are equally supported.

PM > Install-Package IronPdf

https://www.nuget.org/packages/IronPdf

The IronPdf.dll may alternatively be downloaded and manually installed to the project “bin” folder or the machine GAC from https://ironpdf.com/packages/IronPdf.zip

With this library, coding a project to Convert ASPX Page to PDF will take a few minutes of .Net coding.**

Step 2: Start Converting ASP .Net webpages to PDF

We start with a normal ASPX “Web Form” which renders as HTML. We later convert the ASPX page to PDF file format.

In the attached example source-code we rendered a business invoice: “Invoice.aspx” which is a simple HTML business invoice rendered as an ASP .NET Page.

The html page contains CSS3 stylesheets and may also include images and javascript.

To render this ASP .NET Web Page to a PDF instead of HTML we need to open the C# (or VB.Net) code and add this to the Page_Load event:

  1. IronPdf.AspxToPdf.RenderThisPageAsPdf(IronPdf.AspxToPdf.FileBehavior.InBrowser);

Copy code to clipboardVB  C#

This is all that’s required; the html now renders as a PDF. Hyperlinks, StyleSheets, Images and even HTML forms are preserved. This is very similar to the output if the user printed the HTML to a PDF in their browser themselves. IronPDF is built upon Chromium web browser technology that powers Google Chrome.

The entire C# code reads like this in full:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. using IronPdf;
  8. namespace AspxToPdfTutorial
  9. {
  10. public partial class Invoice : System.Web.UI.Page
  11. {
  12. protected void Page_Load(object sender, EventArgs e)
  13. {
  14. IronPdf.AspxToPdf.RenderThisPageAsPdf(IronPdf.AspxToPdf.FileBehavior.InBrowser);
  15. }
  16. }
  17. }

Copy code to clipboardVB  C#

Step 3: ASPX File to PDF Converter Settings

There are many options to tweak and perfect when we convert an ASPX file to PDF generated using .Net Web Forms.

These options are documented in full online at https://ironpdf.com/c%23-pdf-documentation/html/M_IronPdf_AspxToPdf_RenderThisPageAsPdf.htm

PDF FileBehavior

InBrowser” file behavior attempts to show the PDF directly in the User’s browser. This is not always possible in every web browser, but a common feature of modern, standards compliant browsers.

IronPdf.AspxToPdf.RenderThisPageAsPdf(IronPdf.AspxToPdf.FileBehavior.InBrowser);

Attachment” file behavior causes the PDF to be downloaded.

IronPdf.AspxToPdf.RenderThisPageAsPdf(IronPdf.AspxToPdf.FileBehavior.Attachment);

PDF File Name

We may also set the file name of the PDF document by adding an additional parameter. This means we can control the name of the file when the user decides to download or keep it. When we save the aspx page as a pdf this name will be given to the PDF document.

IronPdf.AspxToPdf.RenderThisPageAsPdf(IronPdf.AspxToPdf.FileBehavior.Attachment, “Invoice.pdf”);

PDF Print Options

We can control the output of the PDF by adding an instance of the IronPdf.PdfPrintOptions Class:

https://ironpdf.com/c%23-pdf-documentation/html/T_IronPdf_PdfPrintOptions.htm

  1. var AspxToPdfOptions = new IronPdf.PdfPrintOptions()
  2. {
  3. DPI = 300,
  4. EnableJavaScript = false,
  5. //.. many more options available
  6. };
  7. IronPdf.AspxToPdf.RenderThisPageAsPdf(IronPdf.AspxToPdf.FileBehavior.Attachment, “Invoice.pdf”, AspxToPdfOptions);

Copy code to clipboardVB  C#

The PDF PrintOptions available includes:

  • CreatePdfFormsFromHtml Turns ASPX form elements into editable PDF forms
  • CssMediaType Enables Media=”screen” or “print” for CSS Styles and CSS3 StyleSheets
  • CustomCssUrl Allows a custom CSS style-sheet to be applied to Html by URL
  • DPI Output DPI resolution of the PDF
  • EnableJavaScript Enables JavaScript, jQuery and even Json code within the ASPX Page. A RenderDelay may need to be applied
  • FirstPageNumber First page number for Header and Footer. The default is 1
  • FitToPaperWidth Where possible, shrinks the PDF content to a width of 1 page of virtual paper
  • Footer Sets the footer content for every PDF page using content strings or even HTML
  • GrayScale Outputs a greyscale PDF in shades of grey instead of full color
  • Header Sets the header content for every PDF page using content strings or even HTML
  • InputEncoding The input character encoding as a string. UTF-8 is Default for ASP.NET
  • JpegQuality Quality of any image within the ASPX Page which is large enough to need to be re-sampled. Values range from 0-100. 100 is highest quality, but also largest file size
  • MarginBottom Bottom PDF Paper margin in millimeters. Set to zero for a borderless pdf
  • MarginLeft Left PDF Paper margin in millimeters. Set to zero for a borderless pdf
  • MarginRight Right PDF Paper margin in millimeters. Set to zero for a borderless pdf
  • MarginTop Top PDF Paper margin in millimeters. Set to zero for a borderless pdf
  • PaperOrientation The PDF paper orientation. Landscape or Portrait
  • PaperSize Set an output paper size for PDF pages using System.Drawing.Printing.PaperKind. Alternatively developers may use the SetCustomPaperSize(int width, int height) method to create custom sizes
  • PrintHtmlBackgrounds Prints HTML image backgrounds
  • RenderDelay Milliseconds to wait after Html is rendered before printing so that Javacsript or JSON have time to work
  • Title PDF Document ‘Title’ meta-data
  • Zoom A % Scale level allowing the developer to enlarge or shrink html content

Step 4: Adding Headers & Footers to ASPX PDFs

Using IronPdf, Headers and Footers can be added to the PDFs output.

The simplest way to do this is with the SimpleHeaderFooter class, which supports a basic layout that can easily add dynamic data such as the current time and page numbering.

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. namespace AspxToPdfTutorial
  8. {
  9. public partial class Invoice : System.Web.UI.Page
  10. {
  11. protected void Page_Load(object sender, EventArgs e)
  12. {
  13. var AspxToPdfOptions = new IronPdf.PdfPrintOptions()
  14. {
  15. Header = new IronPdf.SimpleHeaderFooter()
  16. {
  17. CenterText = “Invoice”,
  18. DrawDividerLine = false,
  19. FontFamily = “Arial”,
  20. FontSize = 12
  21. },
  22. Footer = new IronPdf.SimpleHeaderFooter()
  23. {
  24. LeftText = “{date} – {time}”,
  25. RightText = “Page {page} of {total-pages}”,
  26. FontFamily = “Arial”,
  27. FontSize = 12,
  28. },
  29. };
  30. IronPdf.AspxToPdf.RenderThisPageAsPdf(IronPdf.AspxToPdf.FileBehavior.Attachment, “Invoice.pdf”, AspxToPdfOptions);
  31. }
  32. }
  33. }

Copy code to clipboardVB  C#

Alternatively we can generate HTML headers and footers using the HtmlHeaderFooter class which also supports CSS, Images and Hyperlinks.

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. namespace AspxToPdfTutorial
  8. {
  9. public partial class Invoice : System.Web.UI.Page
  10. {
  11. protected void Page_Load(object sender, EventArgs e)
  12. {
  13. var AspxToPdfOptions = new IronPdf.PdfPrintOptions()
  14. {
  15. MarginTop = 50, // make sufficiant space for an HTML header
  16. Header = new IronPdf.HtmlHeaderFooter()
  17. {
  18. HtmlFragment = “
    page {page} of {total-pages}

  19. }
  20. };
  21. IronPdf.AspxToPdf.RenderThisPageAsPdf(IronPdf.AspxToPdf.FileBehavior.Attachment, “MyDocument.pdf”, AspxToPdfOptions);
  22. }
  23. }
  24. }

Copy code to clipboardVB  C#

As seen in our examples, we may “merge” dynamic text or html into Headers / Footers using placeholders:

  • {page} for the current page number of the PDF
  • {total-pages} as the total number of pages within the PDF
  • {date} for today’s date in a format appropriate to the server’s system environment
  • {time} for the time in hours:seconds using a 24 hour clock
  • {html-title} inserts the title from the head tag of the ASPX web form
  • {pdf-title} for the document file name

Step 5: ASPX File to PDF Tricks: Page Breaks

Where as html commonly ‘flows’ into a long page, PDFs simulate digital paper and are broken into consistent pages. Adding the following code to your ASPX page will automatically create a page-break in the .Net generated PDF.

  1.  

Copy code to clipboardHTML

Step 6: Async & Multithreading for Performance

IronPDF was built for .Net Framework 4.0, or .Net Core 2 or above. In Framework 4.5 or above projects ASYNC can be utilised to improve performance when working with multiple documents.

Combining Async with multithreaded CPUs and the Paralllel.ForEach command will improve bulk processing significantly.

Step 7: Downloading this Tutorial as ASP.Net Source Code

The full ASPX File to PDF Converter Source Code for this tutorial is available to be downloaded as a zipped Visual Studio Web Application project.

Download this tutorial as a ASP.Net Visual Studio project

The free download contains working code examples for a C# ASP.Net Web Forms project showing a web page rendered as a PDF with settings applied. We hope this tutorial has helped you to learn how to save an aspx page as pdf.

Step 8: Explore this ASPX to PDF Tutorial on GitHub

The code for this C# ASPX-To-PDF project is available in C# and VB.NET on GitHub as a ASP.Net website project. Please go ahead and fork us on Github for more help using IronPDF. Share this to anyone else you might think is asking ‘How do I Convert ASPX to PDF’.

We hope this helps you to get up and running creating and processing PDF documents in ASP.NET web applications quickly and efficiently.

Step 9: Going Forwards

Generally, the best way to learn any programming technique is through experimentation within your own ASP.Net projects. This includes trying the ASPX to PDF Converter from IronPDF.

Developers may also be interested in the IronPdf.AspxToPdf Class reference:https://ironpdf.com/c%23-pdf-documentation/html/T_IronPdf_AspxToPdf.htm

No Comments

Sorry, the comment form is closed at this time.