- Quick specs
- Price: Free to try (Product watermark displayed); $120.00 to buy
- Operating system: Windows 2000/XP/Vista
- Date added: April 27, 2007
- Total Downloads: 2,965
- Downloads last week: 25
- See full specifications
A newer version of HTML to PDF Converter for .NET is available.
(Download doesn't provide access to previous versions of this program.)
- Average user rating: stars out of 5 votes
See all user reviews
Publisher's description
From Outside Software :The HTML to PDF Converter Library for .NET can be used as a general purpose component for converting web pages and HTML code to PDF documents and images in any format or it can be used to easily create PDF reports directly from ASP.NET pages to benefit from the great power of standard ASP.NET databound server controls. The converter can convert the web pages to PDF documents with selectable texts and objects or to PDF documents with an embedded image. You can add footers and headers to the rendered document, set the page size, page orientation and PDF compression level. The library can be used from any .NET 2.0 application (windows forms, ASP.NET web sites or command line tools). When using the converter from ASP.NET web sites you can opt for the HTML to PDF Converter ASP.NET server control to benefit from the Visual Studio 2005 design time capabilities. The .NET 2.0 libraries, ASP.NET server controls and the provided samples are royalty free.
Version 2.3 adds the possibility to define custom page breaks in the HTML code. You have to simply put the :pb tag where you want split the page.
What's new in this version:
Version 2.3 adds the possibility to define custom page breaks in the HTML code. You have to simply put the :pb tag where you want split the page.More popular Components & Libraries downloads
- 1,219 downloads 1. Wireless Communication Library MFC Edition
- 736 downloads 2. Java Flash Player - JFlashPlayer
- 671 downloads 3. Process Guard Component
- 587 downloads 4. Visual Basic 5.0 Runtime Module
- 525 downloads 5. Unique RAR File Library
- See all Components & Libraries downloads
User reviews of HTML to PDF Converter for .NET 2.3
- Average user rating: 0 stars Not yet available
- My rating: 0 stars Write review
-
Showing 2 of 2 user reviewsSee all 2 user reviews
This software version | All versions -
1 out of 1 people found this review helpful
Version: HTML to PDF Converter for .NET 2.3
"Successfully used this Library in my .NET projects"
Pros: Instant integration with my .NET and ASP.NET applications. Low price for royalty free.
The best one for its price. I downloaded the HTML to PDF Converter Library for .NET 2.0 from dotnet-reporting.com (or from winnovative-software.com is the same).
You can convert a HTML string or a web page URL to PDF in only a few lines of code:
PdfConverter pdfConverter = new PdfConverter();
pdfConverter.LicenseKey = "P38cBx6AWW7b9c81TjEGxnrazP+J7rOjs+9omJ3TUycauK+cLWdrITM5T59hdW5r";
// set the converter options
pdfConverter.PdfDocumentOptions.PdfPageSize = PdfPageSize.A4;
pdfConverter.PdfDocumentOptions.PdfCompressionLevel = PdfCompressionLevel.Normal;
pdfConverter.PdfDocumentOptions.PdfPageOrientation = PDFPageOrientation.Portrait;
pdfConverter.PdfDocumentOptions.ShowHeader = false;
pdfConverter.PdfDocumentOptions.ShowFooter = false;
pdfConverter.PdfDocumentOptions.GenerateSelectablePdf = selectablePDF;
// Performs the conversion and get the pdf document bytes that you can further
// save to a file or send as a browser response
byte[] pdfBytes = pdfConverter.GetPdfFromUrlBytes(urlToConvert);
// send the PDF document as a response to the browser for download
System.Web.HttpResponse response = System.Web.HttpContext.Current.Response;
response.Clear();
response.AddHeader("Content-Type", "binary/octet-stream");
response.AddHeader("Content-Disposition",
"attachment; filename=ConversionResult.pdf; size=" + pdfBytes.Length.ToString());
response.Flush();
response.BinaryWrite(pdfBytes);
response.Flush();
response.End();
-
1 out of 1 people found this review helpful
Version: HTML to PDF Converter for .NET 2.3
Pros: There is acompletely free html to pdf converter application now built on top of this library on the dotnet-reporting.com website or winnovative-software.com , is the same.
- See all 2 user reviews Write review
Submit your review
Previous Versions:
