Design Classic ASP applications to detect session expiration dynamically - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T19:52:55Zhttp://stackoverflow.com/feeds/question/717569http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/717569/design-classic-asp-applications-to-detect-session-expiration-dynamically2Design Classic ASP applications to detect session expiration dynamicallyCaveatrob2009-04-04T18:36:49Z2009-04-04T19:24:22Z
<p>I've got a Classic ASP application that relies on session; if the user leaves a screen idle and then runs a form post or other operation, I'd like to know whether the session has expired.</p>
<p>Currently I'm checking session in each page to see if it's timed out, but is there a better, dynamic, JavaScripty approach that will do what banks do and time out sessions with a notification and redirect to login?</p>
http://stackoverflow.com/questions/717569/design-classic-asp-applications-to-detect-session-expiration-dynamically/717648#7176481Answer by David for Design Classic ASP applications to detect session expiration dynamicallyDavid2009-04-04T19:24:22Z2009-04-04T19:24:22Z<p>During your page's <code>onload</code> event, start a timer, and then redirect the page after N seconds.</p>
<ul>
<li>For the timer, use the <code>window.setTimeout</code> function.</li>
<li>For the redirect, set the value of <code>window.location</code>.</li>
</ul>
<p>Reusable Example:</p>
<pre><code><head>
<script type="text/javascript">
<!--
function redirect(url) {
window.location = url;
}
function beginSessionTimer() {
// 30000ms = 30s
window.setTimeout(redirect, 30000,
"http://www.yoursite.com/login.asp?session=clear");
}
//-->
</script>
</head>
<body onload='beginSessionTimer();'>
</body>
</code></pre>
<p>Quick-n-dirty Example w/ an inline function:</p>
<pre><code><body onload='window.setTimeout(function(){
window.location="http://www.yoursite.com/login.asp?session=clear";},
30000);'>
</code></pre>
<p>Note that if your page performs any AJAX calls, that keeps the session alive, so you'll want to reset the timer using the clearTimeout method (combined w/ a new call to setTimeout). For details on clearTimeout, <a href="https://developer.mozilla.org/en/DOM/window.clearTimeout" rel="nofollow">click here</a> for excellent documentation from Mozilla.)</p>