profwannabe
Programmer
I have a login-driven site that I need to enable a logout for. I cannot use cookies. SessionManagement and ClientManagement are enabled in <cfapplication>.
In my act_logout.cfm I have the following code:
<cfset SESSION.ACTIVE = false>
<cfset CLEAR = #StructClear(session)#>
The user then returns to index.cfm?fuseaction=dspLogin.
However, if one hits the back button on the browser after logging out, one can still navigate through the site as though the logout had not occurred.
In my act_logout.cfm I have the following code:
<cfset SESSION.ACTIVE = false>
<cfset CLEAR = #StructClear(session)#>
The user then returns to index.cfm?fuseaction=dspLogin.
However, if one hits the back button on the browser after logging out, one can still navigate through the site as though the logout had not occurred.