The syntax to get this page from your server is:
"/YourFolder/YourPage.asp"
The syntax to get this page from an Internet domain is:
"http://www.Domain.com/YourFolder/YourPage.asp"
You can send parameters to this page and in this case we have many case:
Case 1 - Get parameter from the form field where you apply the extension:
This is an email send on the onSubmit Form Event
"/YourFolder/YourPage.asp?Parameter1=" & Request("<YourFieldNameHere>") & "&Parameter2=" & Request("<YourFieldNameHere>")
Case 1 - Get parameter from the page that call the sendMail page:
This is an email send on the onLoadPage Event
"/YourFolder/YourPage.asp?Parameter1=" & Request("<YourFieldNameHere>") & "&Parameter2=" & Request("<YourFieldNameHere>")
Case 3 - Get Session value:
"/YourFolder/YourPage.asp?Parameter1=" & session("<YourSessionNameHere>") & "&Parameter2=" & Request("<YourFieldNameHere>")
The page You call cannot get the value of the Session Object directly You must send this value in the parameter string. This because the component that call this page create a new session for the server.
You can add how many parameter you need.
Verify exactly the syntax because if the syntax is not correct You receive an error HTTP 500.100 on load the page. |