This is the source page:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head>
<body> This is a test page. </body> </html>
Here is the link.... I just made a test page. http://www.strongcurrentdesigns.com/114/testsource.asp
----------------
This is the create page:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <% '******************************** '* http://www.DwZone-it.com '* Asp HTML to PDF '* Declare variables '* Version 1.3.2 '******************************** Dim dwzPdf Server.ScriptTimeout = 2500 '******************************** '* Asp HTML to PDF '* Declare variables End Code '******************************** %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> </head>
<BODY>
<p>
<% '*********************** '* http://www.DwZone-it.com '* Asp HTML to PDF '* Version 1.3.2 '*********************** set dwzPdf = new dwzAspPdf dwzPdf.setPageInstance("1") dwzPdf.setDestinationFolder("../uploads/PDFFiles/pdf/") dwzPdf.setPdfName("brochure.pdf") dwzPdf.setMainPar("View in browser and delete@_@@_@Overwrite@_@LETTER@_@Vertical@_@20@_@20@_@20@_@20@_@@_@@_@@_@@_@@_@0@_@Not set@_@Not set@_@Not set@_@Not set@_@65001@_@@_@@_@@_@0@_@System@_@") dwzPdf.setSourcePar("Get@_@/114/testsource.asp@_@@[email protected]@_@false") dwzPdf.setFirstHeaderPar("0@_@@_@") dwzPdf.setSecondHeaderPar("0@_@@_@") dwzPdf.setFooterPar("0@_@@[email protected]") dwzPdf.createPdf() '****************** ' Asp HTML to PDF ' End code '****************** %> </p>
</BODY> </html> <!--#include virtual="/dwzAspPdf/dwzAspPdfClass.asp" -->
<% '****************** ' Asp HTML to PDF '****************** dwzPdf.kill() set dwzPdf = nothing '****************** ' Asp HTML to PDF '****************** %>
Yes I have the /dwzAspPdf/ in both places to be sure. |
|
|