May 13, 2003 #1 schafjoe Programmer Dec 16, 2002 20 US Everybody, Is there a way to get the "Session.Timeout" value so I can use it in a JavaScript function. In VBScript, I would call <% Response.write Session.Timeout %>.
Everybody, Is there a way to get the "Session.Timeout" value so I can use it in a JavaScript function. In VBScript, I would call <% Response.write Session.Timeout %>.
May 13, 2003 #2 chmohan Programmer Apr 9, 2003 392 US http://web.eecs.tufts.edu/notes/asp_server.php3 Upvote 0 Downvote
May 14, 2003 #3 jemminger Programmer Jun 25, 2001 3,453 US you'd have to do something like this: <script type="text/javascript"> var sessionTimeout = <%= Session.Timeout %> </script> ========================================================= try { succeed(); } catch(E) { tryAgain(); } -jeff http://www.jeffemminger.com Upvote 0 Downvote
you'd have to do something like this: <script type="text/javascript"> var sessionTimeout = <%= Session.Timeout %> </script> ========================================================= try { succeed(); } catch(E) { tryAgain(); } -jeff http://www.jeffemminger.com