sessiontimeout problem
Trying to make a variable go away after a certain amount of time.
This is in application.cfm
<cfapplication name="testtag" sessionmanagement="yes" sessiontimeout="#createtimespan(0,0,0,10)#">
<cfparam name="session.test" default="a">
This is in another template
<cfif structkeyexists(session,'test')>
there
<cfelse>
gone
</cfif>
Session.test lasts and lasts and want it to go away to make a timer but session.test is staying, getting reset, or something.
What am I doing wrong?
