Hi,
I had written these sample codes and test it using internet explorer 6 sp1 and firefox 1.01
sessionTest1.asp
Code:
<html>
<body>
<%
response.cookies("abc")("userID") = 1234
session("test1") = "testing"
session("name") = "testAgain"
session("test2") = "Thirdtrial"
%>
<a href="sessionTest2.asp">link</a>
</body>
</html>
sessionTest2.asp
Code:
<html>
<body>
<p>test1 is <%=session("test1")%> </p>
<p>name is <%=session("name")%> </p>
<p>test2 is <%=session("test2")%> </p>
</body>
</html>
When i test on internet explorer
the sessionTest2.asp can display all the session variables but on firefox, all the session variables gone. And when i comment away the normal cookies (response.cookies)on sessionTest1.asp, both browsers can display the session variables properly. Any idea?
Rgs,
fender79