SelectPdf for .NET - Partial Page Conversion with Html to Pdf Converter - C# / ASP.NET Sample

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

The section of the page that will be converted is identified using the element id.

Url:


Render element with ID:



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 partial_conversion : System.Web.UI.Page
    {
        protected void BtnCreatePdf_Click(object sender, EventArgs e)
        {
            // instantiate a html to pdf converter object
            HtmlToPdf converter = new HtmlToPdf();

            // specify the id of the section that will be converted to pdf
            if (!string.IsNullOrEmpty(TxtElements.Text))
            {
                converter.Options.VisibleWebElementId = TxtElements.Text;
            }

            // 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();
        }
    }
}