Shorter Method
<cfset StructClear(session)>
Posted by: Mark Wallace
Posted on: 10/11/2004 02:47 PM
|
StructDelete
Why not use StructDelete? It is a bit longer but it will delete session.
<cfloop collection="#Session#" item="All_Vars"> <cfset StructDelete(Session, All_Vars)> </cfloop>
Any good reason not to do that ?
Posted by: Anang A Phatak
Posted on: 02/02/2005 03:41 PM
|
StructDelete
I agree with Mark
Posted by: chris
Posted on: 12/15/2005 01:22 PM
|
Cool
This little piece of codes was all I needed!!! It worked perfectly. I looked in the book and didn't see anything this simple! Thanks guys!!!
Posted by: Bakari
Posted on: 07/19/2007 11:08 AM
|