Articles in this section
Category / Section

How to convert MVC View to PDF using C#?

5 mins read

The Syncfusion® HTML to PDF converter is a .NET library for converting webpages, SVG, MHTML, and HTML to PDF using C#. It is reliable and accurate. The result preserves all graphics, images, texts, fonts, and the layout of the original HTML document or webpage.

Using this library, you can convert the MVC view to PDF in C#.

Steps to convert the MVC view to PDF programmatically:

  1. Create a new ASP.NET MVC application project.  

Create a new MVC project in ASP.NET MVC PDF

  1. Install the Syncfusion.HtmlToPdfConverter.AspNet.MVC5 NuGet package as a reference to your MVC application from NuGet.org.

NuGet package reference in ASP.NET MVC PDF

  1. Add new button in Index.cshtml for converting HTML to PDF.
    @{ Html.BeginForm("ConvertToPDF", "Home", FormMethod.Post);
    {
    <h2><input type="submit" value="Convert To PDF"></h2>
    }
    }
    
  1. Include the following namespaces in HomeController.cs file.

C#

using Syncfusion.HtmlConverter;
using Syncfusion.Pdf;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
  1. Include the following code snippet in the HomeController.cs to convert the MVC view to PDF document.

C#

//Getting Index view page as HTML
ViewEngineResult viewResult = ViewEngines.Engines.FindView(ControllerContext, "Index", "");
string html = GetHtmlFromView(ControllerContext, viewResult, "Index", "");
string baseUrl = string.Empty;
 
//Convert the HTML string to PDF document 
HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter();
 
//Convert HTML string to PDF
PdfDocument document = htmlConverter.Convert(html, baseUrl);
 
MemoryStream stream = new MemoryStream();
 
//Save and close the PDF document 
document.Save(stream);
document.Close(true);
 
return File(stream.ToArray(), "application/pdf", "ViewAsPdf.pdf");

 

You can download the working sample from MVC_ViewToPDF.Zip.

By executing the above sample, you will get the PDF document as follows.

Output in browser in ASP.NET MVC PDF

Take a moment to peruse the documentation, where you can find converting HTML pages to PDF document along with respective customization options and features.

Refer here to explore the rich set of Syncfusion Essential® PDF features.

An online sample link for Converting HTML to PDF.

Note:

Starting with v16.2.0.x, if you reference Syncfusion® assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to link to learn about generating and registering Syncfusion® license key in your application to use the components without trail message.

 

 

Conclusion

I hope you enjoyed learning how to convert MVC View to PDF in .NET MVC using C#.

You can refer to our ASP.NET MVC PDF feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our ASP.NET MVC PDF Example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!


Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied