I am trying to find a library/tool that would allow me to generate PDF from MVC views.
Any ideas, suggestions?
Regards
I am trying to find a library/tool that would allow me to generate PDF from MVC views.
Any ideas, suggestions?
Regards
use iTextSharp for C# which is ported from iText from JAVA
check out ITextSharp HTML to PDF?
I've created a project for doing this using iTextSharp, and published on bitbucket.
I override a ViewResult
, to return a Pdf stream to the client. The pdf is generated in a MVC View (.cshtml file). And added some Extensions for the controller to make the experience smooth.
I have two options:
You will need to call RenderView to get the HTML result and then convert to PDF. Check this entry out for a similar solution
http://www.jimzimmerman.com/blog/2009/10/06/PdfResult+A+Custom+ActionResult+In+ASPNET+MVC.aspx