Popular posts from this blog
Convert Aspx to PDF
Introduction : Now days many reporting is done on asp.net page and many times we need to convert these pages to PDF file. below is simple solution. Suggested solution can convert following to PDF. Asp.net aspx page to PDF. PHP to PDF. (By hosting this code as separate web application) HTML to PDF. URL to PDF and many more.... Solution : For this you have to include "wkhtmltopdf.exe" and some other files into your asp.net project.(These files are available in sample project attached.) After that you have to add a new page into your web application. this page just revive the URL of page to be converted into PDF. Code should be placed into pageload event of new added page and its simple.this page will convert the URL page into PDF file and download the PDF file on client system. Code : protected void Page_Load( object sender, EventArgs e) { String URL = Request.QueryString[ "URL" ].ToString(); ...
Comments
Post a Comment