Click here to Skip to main content
Click here to Skip to main content

Generate PDF documents from a HTML page using ASP.NET

By , 23 May 2004
 

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionmagicPDF should do the trick [modified]memberAbramson uri1 Mar '13 - 14:21 
AnswerRe: have you tried [link removed] / ?memberJibesh1 Mar '13 - 14:42 
QuestionCould not load type 'SuperJockey.PDF.DisplayPDF'.memberMCA.Bhupendra9 Feb '13 - 23:29 
Questionhtml to pdfmembersweval28 Dec '11 - 22:09 
GeneralEO HTML to PDF converter (C# and VB.NET)memberszchenh14 Apr '11 - 11:17 
GeneralReg DLL filemembervimaldreams106 Apr '11 - 4:03 
GeneralHTML to PDF converter based on Webkit [ .NET / JAVA / C++ / PHP / Python / Ruby ]membercodeivan7 Feb '11 - 12:08 
Generalbest way to convert HTML to pdf from your asp.net with all styling and formattingmembergo2amitech30 Jul '10 - 20:58 
GeneralMy vote of 1memberAvinash T P14 Jul '10 - 19:52 
GeneralHTML to PDF [modified]memberFlorin Chivu7 Mar '10 - 6:36 
GeneralMy vote of 2memberAJFK2 Feb '10 - 4:49 
GeneralI got error: C:\Windows\system32\LIBEAY32.dll is not a valid windows imagememberhalifaxdal3 Apr '09 - 10:41 
Hi Al, thanks for posting the HTML-PDF article on Code Project, I got a problem when using it, it says: The application or DLL C:\Windows\system32\LIBEAY32.dll is not a valid windows image. Please check this against your installation diskette.
 
I do have the latest dll file, I am not sure if it is the right one because the file can't be registered (DllRegister start point cannot be found)
 
Can you please help me out here?
 
Thank you very much.
GeneralNot able to view DisplayPDF.aspx page.memberriteshmanglani8 Jan '09 - 20:16 
GeneralOpen source / free HTMLDOC or GHTMLDOC download sitememberdaluu21 Nov '08 - 11:59 
GeneralRe: Open source / free HTMLDOC or GHTMLDOC download sitememberpc.huff13 Apr '09 - 17:35 
GeneralRe: Open source / free HTMLDOC or GHTMLDOC download sitememberdaluu14 Apr '09 - 8:38 
GeneralRe: Open source / free HTMLDOC or GHTMLDOC download sitememberpc.huff14 Apr '09 - 8:42 
GeneralRe: Open source / free HTMLDOC or GHTMLDOC download sitememberpc.huff14 Apr '09 - 8:45 
GeneralDownloading PDFmemberVinoth Dhakshinamoorthy17 Jun '08 - 3:16 
GeneralRe: Downloading PDFmemberbkstylz13 Aug '08 - 8:30 
GeneralRe: Downloading PDFmemberDarthJay29 Aug '08 - 10:47 
GeneralRe: Downloading PDFmembereva xanthou20 May '09 - 5:15 
GeneralRe: Downloading PDFmemberjlfritz16 Dec '10 - 4:07 
GeneralRe: Downloading PDFmemberGudny26 Sep '11 - 3:06 
QuestionPermissions?memberjd_hannah6 Jun '08 - 10:51 

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 24 May 2004
Article Copyright 2004 by Albert Pascual
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid