moiseszaragoza
08-27-2007, 10:08 AM
I have a Button that passes a variable that kills all my sessions
<a href="default.asp?logout=y"> log out </a>
then my code read
dim seLogout
seLogout=request.QueryString("logout")
if (seLogout = "y") then
session.Abandon()
response.Redirect("default.asp") // This line does not happened
end if
its not redirecting me because i sell my page with all the sessions still active i have to refresh 1 more time to see my page with no sessions
any ideas how to fix this ?
<a href="default.asp?logout=y"> log out </a>
then my code read
dim seLogout
seLogout=request.QueryString("logout")
if (seLogout = "y") then
session.Abandon()
response.Redirect("default.asp") // This line does not happened
end if
its not redirecting me because i sell my page with all the sessions still active i have to refresh 1 more time to see my page with no sessions
any ideas how to fix this ?