I am trying to delete the clientside session cookie when I access a certain page. How do I do this?
|
|
|
|
|
|
|
Do you mean the CFID and CFTOKEN cookies? Or the Sessions struct? You can expire the cookies like this:
but if you want to clear the session scope you should do this:
|
||
|
|
|
|
Set the cookie again, with blank data and an expiry date of now.
It will remain for the rest of the request, and then it should go. |
||
|
|
