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!

Session Variables Missing in IE6

Status
Not open for further replies.

ayh8disjob

Programmer
May 31, 2001
41
0
0
SG
I have this strange problem in IE6 browser only.

In my page1 i store something in the session variable but
when i tried to get that variable in the page2 It doesnt seems to save the session variables. and my problem is it works in IE5,IE5.5, and IE6sp1 but not in IE6.

The code is something like this.

Page1.asp
Session("Name") = "MYNAME"
.
.
.
Response.Redirect("Page2.asp")


Page2.asp

<%= Session(&quot;Name&quot;) %>


I dont understand what seems to be the problem? wether its from my code or from the client IE that im using. I really need help....

Can you help me wether it is a browser problem or a coding problem?

hope someone out there can help me. coz im really frustrated been searching the big M site for help but cannot find the answer.


Thanks in advance.

Ayh8disjob b4, Now AyLoVIt
 
asp sessions use cookies so if cookies are disabled in your IE6 then the session variables will not persist - hope this helps
 
Yes your right! but I've enabled the option to allow cookies in the IE6 but still doesn't work.

[morning]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top