I have an ASP.Net web application in which I wan't to provide an export to PDF facility for a list of articles (the app is sort of like an RSS reader). Basically what I want to do is render the ASP.Net output to a memory stream (html) and then use a library to convert it to PDF and return it to the user. Any library recommendations appreciated?
Rowan Hanna
[ Admin ]
Yes, there's a few options available for converting HTML to PDF.
- activePDF WebGrabber - (Commercial, .NET)
- WebToPDF.NET - (Commercial, .NET)
- There is also an article (Generate PDF documents from a HTML page using ASP.NET) at CodeProject that provides another option.
