javascript
-
is there a way i can use javascript to do what i can do with "Request.Form("field")" to get the info off the page before my current page. i am looking for something to run at the client computer thanks chad
No. The form data is sent from a page to the server. The server does not relay the form data into the header of the next page. If you send the data in the url instead (post the form with method="GET") you will be able to retrieve it on the next page. This function might be useful if you choose that method: Javascript : querystring[^] --- b { font-weight: normal; }
-
is there a way i can use javascript to do what i can do with "Request.Form("field")" to get the info off the page before my current page. i am looking for something to run at the client computer thanks chad
use "get" mothed