Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

ASP Timeout Property


❮ Complete Session Object Reference

The Timeout property sets or returns the timeout period for the Session object for this application, in minutes. If the user does not refresh or request a page within the timeout period, the session will end.


Syntax

Session.Timeout[=nMinutes]

Parameter Description
nMinutes The number of minutes a session can remain idle before the server terminates it. Default is 20 minutes

Examples

<%
response.write("<p>")
response.write("Default Timeout is: " & Session.Timeout)
response.write("</p>")

Session.Timeout=30

response.write("<p>")
response.write("Timeout is now: " & Session.Timeout)
response.write("</p>")
%>

Output:

Default Timeout is: 20

Timeout is now: 30

❮ Complete Session Object Reference