SelectPdf for .NET - Getting Started with Html to Pdf Converter - VB.NET / ASP.NET MVC Sample

This sample shows the simplest code that can be used to convert an url to pdf using SelectPdf Pdf Library for .NET.

Url:



Sample Code VB.NET



Imports SelectPdf

Namespace Controllers
    Public Class HtmlToPdfConverterController
        Inherits Controller

        ' GET: HtmlToPdfConverter
        Public Function Index() As ActionResult
            Return View()
        End Function

        <HttpPost>
        Public Function SubmitAction(collection As FormCollection) As ActionResult
            ' instantiate a html to pdf converter object
            Dim converter As New HtmlToPdf()

            ' create a new pdf document converting an url
            Dim doc As PdfDocument = converter.ConvertUrl(collection("TxtUrl"))

            ' 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