I have this problem with my logout.
once in a protected page...I have a link to logout.
the logout page:
<cfset Session.LoginID = "false"
and <cfcookie name="LoginID" expires="NOW">
and then it takes me back to the login page. but when i hit the back button....it goes back to that secure page
However, if i click on refresh...then that secure page will say I have to login again.
It looks to me that the Session.LoginID was set to false from the logout page but the cache information for that secured page was still in the browser.
How do i go about deleting the cached information?
once in a protected page...I have a link to logout.
the logout page:
<cfset Session.LoginID = "false"
and <cfcookie name="LoginID" expires="NOW">
and then it takes me back to the login page. but when i hit the back button....it goes back to that secure page
However, if i click on refresh...then that secure page will say I have to login again.
It looks to me that the Session.LoginID was set to false from the logout page but the cache information for that secured page was still in the browser.
How do i go about deleting the cached information?