Hi,
I'm having a problem dealing with session variables. I have a page that calls another page.
In Global.asa Session_OnStart I have:
session("FOO") = ""
Page 1 does:
session("FOO") = "bar"
Page 2 says:
response.write session("FOO")
Page 2 is blank--why? If, in Page 1, prior to calling Page 2, I do:
response.write session("FOO"), I get 'bar' on page 1.
I've checked the sessionID of both pages and they are of the same session. What's going on here??
Thanks,
--Jim
I'm having a problem dealing with session variables. I have a page that calls another page.
In Global.asa Session_OnStart I have:
session("FOO") = ""
Page 1 does:
session("FOO") = "bar"
Page 2 says:
response.write session("FOO")
Page 2 is blank--why? If, in Page 1, prior to calling Page 2, I do:
response.write session("FOO"), I get 'bar' on page 1.
I've checked the sessionID of both pages and they are of the same session. What's going on here??
Thanks,
--Jim