<!DOCTYPE html PUBLIC "- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>ColdFusion Session Timeout Test</title>
</head>
<body>
<h1>
2 Second ColdFusion Session Timeout Test
</h1>
<cfthread
action="sleep"
duration="#(10 * 1000)#"
/>
<p>
Session Created:
#TimeFormat(
SESSION.DateCreated,
"hh:mm:ss"
)#
</p>
<cfif StructKeyExists( SESSION, "DateEnded" )>
<p>
Session Ended:
#TimeFormat(
SESSION.DateEnded,
"hh:mm:ss"
)#
</p>
</cfif>
<p>
Page Ended:
#TimeFormat(
Now(),
"hh:mm:ss"
)#
</p>
</body>
</html>