
Passing Vars on the client side
Add them to the url;
window.location.href = 'page2.html?myvar=' & sMyText
then on page you get the URL and parse it for the values you want
sURL = window.location.href
...rest of code here
Quote:
> I asked this question a couple of days ago:
> Can someone tell me how I can easily pass varients from one web page to
> another using VBScript?
> I recieved a response from <RattFink138> for the server side, thanks by
the
> way. Can someone tell me how it is done on the client side?