jmill72
-
Total Posts
:
2
- Scores: 0
-
Reward points
:
0
- Joined: 6/21/2001
- Location:
-
Status: offline
|
Passing variables between client VBScript and ASP
Thursday, June 21, 2001 12:21 PM
( permalink)
I'm creating an ASP application and I'm trying pass information from a client-side VBscript variable into ASP code. I need to pass an ID from one ASP page to another, and I'd like to either put it in Session or pass it as part of a QueryString, but preferably in Session. I can't get either way to work. I can put a constant into Session in a VBscript function, but I can't seem to get a VBscript variable into Session. Any ideas?
|
|
|
|
adminkoe
-
Total Posts
:
114
- Scores: 0
-
Reward points
:
0
- Joined: 12/23/2000
- Location:
-
Status: offline
|
Re: Passing variables between client VBScript and ASP
Friday, June 22, 2001 2:22 PM
( permalink)
Hi:), Try this, you can modify & streamline the sample code for your needs. This is just to show the method I use to solve the problem test1.asp ========== test2.asp ========= test3.asp =========== <% session("id") = request.form("id") response.write session("id") %> Regards, Andi Zain
|
|
|
|