Hi here,
I got this two web page which are interlink login and logout.
When i login, i set a session to hold the name of the user. The name of the user will be display on top of the web page login.asp. After that, when i log out with the coding like this
<html>
<body>
<%
session.contents.remove("username")
response.Redirect("index.asp")
%>
</body>
</html>
i cant seem to delete the name on the session which is display on the login page. I will be deleted when i click on the refresh.
How come could this happen if i already change the session name to "" but when i go to the page login, the name is still there?
Can anyone help me
Thanks