Sample Code VB.NET
Imports SelectPdf Namespace Controllers Public Class PdfHtmlElementController Inherits Controller ' GET: PdfHtmlElement Public Function Index() As ActionResult Return View() End Function <HttpPost> _ Public Function SubmitAction(collection As FormCollection) As ActionResult Dim renderingEngine As RenderingEngine = CType([Enum].Parse(GetType(RenderingEngine), Request("DdlRenderingEngine"), True), RenderingEngine) ' create a new pdf document Dim doc As New PdfDocument() ' add a new page to the document Dim page As PdfPage = doc.AddPage() ' create html element Dim html As New PdfHtmlElement(Request("TxtUrl")) html.RenderingEngine = renderingEngine html.CefEnginePath = Server.MapPath(ConfigurationManager.AppSettings("CefEnginePath")) ' add the html element to the document page.Add(html) ' save pdf document Dim pdf As Byte() = doc.Save() ' close pdf document doc.Close() ' return resulted pdf document Dim fileResult As FileResult = New FileContentResult(pdf, "application/pdf") fileResult.FileDownloadName = "Document.pdf" Return fileResult End Function End Class End Namespace
