session.abandon!!
hi,
after i logout from the main page, i can access to the previous page by click on the back button. i have actually include a line to kill all my session in my logout script:
<%
'reset all session to empty
session("userid") = ""
session.abandon
response.redirect "default.asp?opt=1"
%>
so how can i do to make sure that after i clicked on the back button it will not go back to the previous page.
advanced thanks for those who can provide help.
|