SelectPdf Free Html To Pdf Converter - Conversion Delay with Html to Pdf Converter - C# / ASP.NET Sample

This sample shows how the html to pdf converter can be used to convert a web page to pdf using SelectPdf Pdf Library for .NET.

For pages that use javascripts heavily, the conversion can be delayed a number of seconds using converter.Options.MinPageLoadTime property to allow the content to be fully rendered.

In a similar way, if a page takes too much time to load, the converter can specify the amount of time in seconds when the page load will timeout using the property converter.Options.MaxPageLoadTime.

Url:

Delay conversion:
seconds

Page timeout:
seconds


Sample Code C#



using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using SelectPdf;

namespace SelectPdf.Samples
{
    public partial class conversion_delay : System.Web.UI.Page
    {
        protected void BtnCreatePdf_Click(object sender, EventArgs e)
        {
            // read parameters from webpage
            int delay = 0;
            try
            {
                delay = Convert.ToInt32(TxtDelay.Text);
            }
            catch { }

            int timeout = 0;
            try
            {
                timeout = Convert.ToInt32(TxtTimeout.Text);
            }
            catch { }

            // instantiate a html to pdf converter object
            HtmlToPdf converter = new HtmlToPdf();

            // specify the number of seconds the conversion is delayed
            converter.Options.MinPageLoadTime = delay;

            // set the page timeout
            converter.Options.MaxPageLoadTime = timeout;

            // create a new pdf document converting an url
            PdfDocument doc = converter.ConvertUrl(TxtUrl.Text);

            // save pdf document
            doc.Save(Response, false, "Sample.pdf");

            // close pdf document
            doc.Close();
        }
    }
}