The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
HttpSessionState::Timeout Property
.NET Framework (current version)
Gets and sets the amount of time, in minutes, allowed between requests before the session-state provider terminates the session.
Assembly: System.Web (in System.Web.dll)
The Timeout property can be set in the Web.config file for an application using the timeout attribute of the configuration element, or you can set the Timeout property value directly using application code.
The Timeout property cannot be set to a value greater than 525,600 minutes (1 year). The default value is 20 minutes.
The following code example sets the timeout session attribute to 30 minutes in the Web.config file.
<configuration>
<system.web>
<sessionState
mode="InProc"
cookieless="true"
timeout="30" />
</system.web>
</configuration>
.NET Framework
Available since 1.1
Available since 1.1
Show: