|
Request.form is the ASP way of reading the posted data (one of the many server side languages that can process data that has been POSTed).
JavaScript can only read data from a form on the prior page when the form used GET to pass the information in the querystring on the end of the address.
The alternative would be to have the JavaScript that is called when the form is submitted save the information in a cookie and then call the following page without actually submitting the form. The following page could then read the information from the cookie using JavaScript.
Without a server side language you would still have no way to pass the information from one page to the other for anyone who doesn't have JavaScript enabled in their browser.
|