May 8, 2001 #1 starvin Programmer Apr 9, 2001 13 US Can Server-side Visual Basic Script session variables expire themselves before the Internet user terminates the active web browser instance.
Can Server-side Visual Basic Script session variables expire themselves before the Internet user terminates the active web browser instance.
May 9, 2001 #2 link9 Programmer Nov 28, 2000 3,387 US if you call the session.abandon method, that will do it -- they have a default life of 20 minutes -- so they'll expire after that -- and you can set that to be longer or shorter by saying session.expires = minutesValue to set it to whatever you would like it to be Paul Prewett Upvote 0 Downvote
if you call the session.abandon method, that will do it -- they have a default life of 20 minutes -- so they'll expire after that -- and you can set that to be longer or shorter by saying session.expires = minutesValue to set it to whatever you would like it to be Paul Prewett