Is there a way to pass a variable from a javascript function to another page? I want to retrieve the value of this variable using the request object.
Any advice will be greatly appreciated. Thanks.
Is there a way to pass a variable from a javascript function to another page? I want to retrieve the value of this variable using the request object.
Any advice will be greatly appreciated. Thanks.
Use a cookie?
Sounds like you have to create a form... and pass the values to an ASP. Then you will be able to use the Object Request.
If you dont want to use an ASP. You can still do the form in the first one.. and then in the second page... create a JavaScript function to substract the vars and values from the url string
You can parse the querystring client side though, you don't have to necessarily use a server-side language... so javascript can be used.
Take a look here.
http://www.jamesrking.com/left_brain...uerystring.asp