Design Classic ASP applications to detect session expiration dynamically - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:52:55Z http://stackoverflow.com/feeds/question/717569 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/717569/design-classic-asp-applications-to-detect-session-expiration-dynamically 2 Design Classic ASP applications to detect session expiration dynamically Caveatrob 2009-04-04T18:36:49Z 2009-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#717648 1 Answer by David for Design Classic ASP applications to detect session expiration dynamically David 2009-04-04T19:24:22Z 2009-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>&lt;head&gt; &lt;script type="text/javascript"&gt; &lt;!-- function redirect(url) { window.location = url; } function beginSessionTimer() { // 30000ms = 30s window.setTimeout(redirect, 30000, "http://www.yoursite.com/login.asp?session=clear"); } //--&gt; &lt;/script&gt; &lt;/head&gt; &lt;body onload='beginSessionTimer();'&gt; &lt;/body&gt; </code></pre> <p>Quick-n-dirty Example w/ an inline function:</p> <pre><code>&lt;body onload='window.setTimeout(function(){ window.location="http://www.yoursite.com/login.asp?session=clear";}, 30000);'&gt; </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>