A port of the PHP FPDF library to run in ASP Classic (3.0)
With this library you should be able to write PDF files, from Classic ASP without any components.
License
GNU General Public License version 2.0 (GPLv2)Follow ASPDF - PDF Creation with Classic ASP
Other Useful Business Software
Passwordless Authentication and Passwordless Security
It’s no secret — passwords can be a real headache, both for the people who use them and the people who manage them. Over time, we’ve created hundreds of passwords, it’s easy to lose track of them and they’re easily compromised. Fortunately, passwordless authentication is becoming a feasible reality for many businesses. Duo can help you get there.
Rate This Project
Login To Rate This Project
User Reviews
-
Thank you so much. This project is very useful.
-
How can i convert html page to PDF directly ?
-
A great project! Excellent. As mentioned earlier by others, FPDF is the base product of ASPDF but a few examples in JSCRIPT would be desirable. For example, please provide sample codes to show: How to override the Header and footer methods without directly editing the ASPDF,asp?
-
There is a simple code of classic asp. For more sample, tutorial and manual, you may visit to fpdf.org <%@ language = vbscript%> <!-- #include file="fpdf.asp" --> <% Set pdf = CreateJsObject("FPDF") pdf.CreatePDF() pdf.SetPath("fpdf/") pdf.SetFont "Arial","",16 pdf.Open() pdf.AddPage() pdf.Cell 40,10,"Hello Word!" pdf.Close() pdf.Output() %>
-
No manual! For begginers it's pain in the a** to start with this project... Still didn't find out how to use this thing.