The session id value still the same after session.invalidate()
843836Jan 20 2004 — edited May 24 2004Hi,
I have an application, after go to logout.jsp page all the session variables/values are deleted, which is correct.... but the session id value still the same, so due to I saving the session id when the customer is logOn, when the logout process and redirect to login.jsp page I will save the same session id...
in my logout.jsp
<% session.invalidate();>
<META http-equiv="refresh" CONTENT="2; URL=login.jsp">
If I close the IE window and open a new one, the session id is different...
Please help!