May 13, 2003 #1 schafjoe Programmer Joined Dec 16, 2002 Messages 20 Location 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 Joined Apr 9, 2003 Messages 392 Location US http://web.eecs.tufts.edu/notes/asp_server.php3 Upvote 0 Downvote
May 14, 2003 #3 jemminger Programmer Joined Jun 25, 2001 Messages 3,453 Location 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