Translate page

Changing session timeout

How can I change the session timeout?

The session timeout value can be configured in the Web.config file. Add the sessionState key to the system.web section in the Web.config file and set the number of minutes for timeout:

<system.web>
    <sessionState timeout="60"></sessionState>
</system.web>