I’m running a sale this weekend to celebrate Perfect PDF graduating from beta!
You can grab an unlimited license that covers you and your entire team, as many applications as you want to build, for $79 right now. If you need to convert HTML to PDF in your ASP.NET MVC application, Perfect PDF is for you!
If you just want to try it out, you can grab a trial off of NuGet:
After that, all you have to do is return a PdfActionResult that points to the view you want to render as a PDF:
//Normal ASP.NET MVC Action that renders a dashboard... public ActionResult Dashboard(DashboardType type) { var dashboardModel = GetDashboard(type); return View(dashboardModel); } //Simple wrapper that creates a PDF of the dashboard! public ActionResult PrintDashboard(DashboardType type) { return new PdfActionResult<HomeController>(c => c.Dashboard(type)); }
That’s all there is to it!
Remember, this weekend sale will save you over $200 off the regular price!