Click here to Skip to main content
Licence 
First Posted 17 May 2004
Views 546,094
Bookmarked 177 times

Generate PDF documents from a HTML page using ASP.NET

By | 23 May 2004 | Article
Convert HTML to PDF from an ASPX page.

Introduction

This project uses an HTML to PDF exe from ESP. Please read the GNU license agreement for more information. HTMLDOC is a desktop application to create PDF documents from a HTML page. I wrote some code to use it from a web application. The best used is from a Web Report to add a PRINT to PDF button to use the C# class.

Using the code

    public string Run(string sRawUrl)
    {            
        string sFileName = GetNewName();
        string sPage = Server.MapPath("" + sFileName + ".html");            
        string sUrlVirtual = sRawUrl;
        StringWriter sw = new StringWriter();

        Server.Execute(sUrlVirtual, sw);

        StreamWriter sWriter = File.CreateText(sPage);
        sWriter.WriteLine(sw.ToString());
        sWriter.Close();    

        System.Diagnostics.Process pProcess 
                             = new System.Diagnostics.Process();
        pProcess.StartInfo.FileName = m_sDrive + ":" + m_Directory + 
                                            "\\ghtmldoc.exe";
        pProcess.StartInfo.Arguments = "--webpage --quiet " + sFontSize + 
                  m_sWaterMark + " --bodyfont Arial " + sLandScape + 
                  " -t pdf14 -f " + sFileName + ".pdf " + sFileName + ".html";
        pProcess.StartInfo.WorkingDirectory = m_sDrive + ":" + m_Directory;

        pProcess.Start();            

        return(sFileName + ".pdf");            
    }

The class PDFGenerator contains a public method called Run that will call the process hghtmldoc.exe with the arguments you choose. The most important part is to set a working directory where the Web application has permission to read, write and execute, otherwise the program won't work, and the function pProcess.Start will raise a Win32 Exception "access denied".

StreamWriter will save the page into a HTML file on the hard disk.

The file DisplayPDF.aspx and DisplayPDF.aspx.cs will do just that, displays the generated PDF file when ready.

        private void Page_Load(object sender, System.EventArgs e)
        {

            if ( Request.Params["File"] != null )
            {
                bool bRet = false;
                int iTimeout = 0;
                while ( bRet == false )
                {
                    bRet = CheckIfFileExist(Request.Params["File"].ToString());
                    Thread.Sleep(1000);
                    iTimeout++;
                    if ( iTimeout == 10 )
                        break;
                }

                if ( bRet == true )
                {
                    Response.ClearContent();
                    Response.ClearHeaders();
                    Response.ContentType = "Application/pdf";
                    try 
                    { 
                        Response.WriteFile( MapPath( "" + 
                                      Request.Params["File"].ToString() ) ); 
                        Response.Flush();
                        Response.Close();
                    }
                    catch 
                    { 
                        Response.ClearContent();  
                    }
                    
                }
                else
                {
                    if ( Request.Params["Msg"] != null )
                    {
                        LabelMsg.Text = Request.Params["Msg"].ToString();
                    }
                }
            }
        }

The page accepts a parameter, FILE, previously saved in the hard disk by StreamWriter. The Response.Redirect will include application/PDF, so the browser knows what kind of file is downloading and ask you to SAVE or OPEN. If you have Adobe plug-in installed on your browser, you'll be able to see the PDF from your browser.

Points of Interest

It is important you create a directory to save the HTML file and generate the PDF, also give that directory all the permissions you need to run the EXE.

History

Remember the HTMLDOC is copywrite ESP. Please go to this link and download the latest version. The GNU license agreement is included in the project.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Albert Pascual

Web Developer

United States United States

Member

Al is just another Software Engineer working in C++, ASp.NET and C#. Enjoys snowboarding in Big Bear, and wait patiently for his daughters to be old enough to write code and snowboard.
 
Al is a Microsoft ASP.NET MVP
 
Blog

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
Questionhtml to pdf Pinmembersweval22:09 28 Dec '11  
GeneralEO HTML to PDF converter (C# and VB.NET) Pinmemberszchenh11:17 14 Apr '11  
GeneralReg DLL file Pinmembervimaldreams104:03 6 Apr '11  
GeneralHTML to PDF converter based on Webkit [ .NET / JAVA / C++ / PHP / Python / Ruby ] Pinmembercodeivan12:08 7 Feb '11  
Generalbest way to convert HTML to pdf from your asp.net with all styling and formatting Pinmembergo2amitech20:58 30 Jul '10  
GeneralMy vote of 1 PinmemberAvinash T P19:52 14 Jul '10  
GeneralHTML to PDF [modified] PinmemberFlorin Chivu6:36 7 Mar '10  
GeneralMy vote of 2 PinmemberAJFK4:49 2 Feb '10  
GeneralI got error: C:\Windows\system32\LIBEAY32.dll is not a valid windows image Pinmemberhalifaxdal10:41 3 Apr '09  
GeneralNot able to view DisplayPDF.aspx page. Pinmemberriteshmanglani20:16 8 Jan '09  
GeneralOpen source / free HTMLDOC or GHTMLDOC download site Pinmemberdaluu11:59 21 Nov '08  
GeneralRe: Open source / free HTMLDOC or GHTMLDOC download site Pinmemberpc.huff17:35 13 Apr '09  
GeneralRe: Open source / free HTMLDOC or GHTMLDOC download site Pinmemberdaluu8:38 14 Apr '09  
GeneralRe: Open source / free HTMLDOC or GHTMLDOC download site Pinmemberpc.huff8:42 14 Apr '09  
GeneralRe: Open source / free HTMLDOC or GHTMLDOC download site Pinmemberpc.huff8:45 14 Apr '09  
GeneralDownloading PDF PinmemberVinoth Dhakshinamoorthy3:16 17 Jun '08  
GeneralRe: Downloading PDF Pinmemberbkstylz8:30 13 Aug '08  
GeneralRe: Downloading PDF PinmemberDarthJay10:47 29 Aug '08  
GeneralRe: Downloading PDF Pinmembereva xanthou5:15 20 May '09  
GeneralRe: Downloading PDF Pinmemberjlfritz4:07 16 Dec '10  
GeneralRe: Downloading PDF PinmemberGudny3:06 26 Sep '11  
QuestionPermissions? Pinmemberjd_hannah10:51 6 Jun '08  
AnswerRe: Permissions? Pinmemberjd_hannah11:29 6 Jun '08  
GeneralCode / Bug Fix PinmemberJustin Porteous22:17 1 Jun '08  
Generalghtmldoc.exe OR HTMLDOC.exe for HTMLDOC 1.9 Pinmemberdeepakleo19:20 20 Dec '07  
Hi All
 
I am currently using your source code and its working fine but it is not accepting CSS.
I have read the article about HTMLDOC which says that HTMLDOC 1.8 does not support CSS but HTMLDOC 1.0 supports. i downloaded HTMLDOC 1.9 and trying to find ghtmldoc 1.9 OR htmldoc 1.9 but not able to find it out..
 
Can anyone tell me where did i find this .exe file
 
Thanx in advance

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
Web04 | 2.5.120529.1 | Last Updated 24 May 2004
Article Copyright 2004 by Albert Pascual
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid