Asp HTML to PDF
Version 1.2.9  how it workview examples and demoHelp and TutorialsVersion revisionAdd to cart
How does it work - Source panel
Main
Source
Header
Footer
Price: 96,00 €
Usd. 125,51
Currency conversion according with PayPal
 

In this panel you must setup the source page and the parameters the extension send to the source page.
The source page is the page that return the HTML you need transform in PDF.
   
Source page: The path of the source page. This path must be site relative (the path must start from the root) like:/myFolder/myFile.asp
This page can be a dynamic or static page and can any type of dynamic page (asp, jsp, cfm, etc..)
   
Send method: Only POST. The variable you use in this page must be get with the "request.FORM" or the "request" method, the "request.querystring" and the "session" method don't work.
   
Page encode: The encode charset of the source page
   
Parameters: The list of parameters the extension send to the Source page. Each parameter has 3 properties: From, Field name and Field Value.
   
Parameter name:
The name of the parameter. This will be the variable name that the extension send to the source page with the POST method.
Example: if you setup a variable called "Id" in the source page you must use the request.form("Id") to retrieve the variable value.
   
Parameter from:
Indicate where get the parameter. The option are:
Recordset get a value from any recordset you have in the page
Entered value A static value.
URL variable A value from the QueryString
Form variable A value from the Request.Form
Session variable A value from a session variable
Application variable A value from a application variable
Cookie A value from a cookie variable
   
Recordset:
Field:
When you choose Recordset in the the "Parametrr from" combo select the recordset you want use to get the parameter value and in the Field combo select the field of the recordset
   
Parameter value:
This field can have 2 different value type.
When you choose "Entered value" in the "Parameter from" this field will be the effective value of the parameter and when you choose another type of "Parameter from" this value will be the name of the parameter you chose.
Ex. if you chose "URL variable" in the "Parameter from" and you insert "Name" in this field the parameter value will be result of request.querystring("Name")
Ex. if you chose "Session variable" in the "Parameter from" and you insert "UserName" in this field the parameter value will be result of session("UserName")