Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Variable through HTML pages

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
0
0
How can I set a variable in one page with VBScript and then read that value from another HTML page??
 
try using this in your a href:

hyperlinktopage.asp?variable=<%variable%>

then on the page you linked to do this:

Request.Querystring(&quot;variable&quot;)

that should do what you want
joeyh
 
you could also use sesssion variables, cookies, or forms. The best method will depend on the type of application you have, and whether you have a web farm or single server.

nick bulka

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top