Passing Vars on the client side 
Author Message
 Passing Vars on the client side

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?



Sun, 17 Aug 2003 23:06:02 GMT  
 Passing Vars on the client side
...or use cookies.


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?



Sun, 17 Aug 2003 23:14:21 GMT  
 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?



Sun, 17 Aug 2003 23:14:15 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Passing Server side vars to Client side

2. How Can I Pass Data Between the Server Side and the Client Side VB/JScript

3. Passing values from client vars to Server script

4. pass server side vbscript to client side javascript

5. how to pass client side values to server side

6. Passing variables from server-side to client-side

7. Passing variables from client-side to server-side

8. Passing Server Side Arrays to Client Side Scripts

9. Passing a server side var to client side block

10. Passing variable from server side to client side

11. Passing Parameters between HTML pages (client side only)

12. Urgent : Passing variables from client script to server side

 

 
Powered by phpBB® Forum Software