|
This change sets the
StateServer service to store session data instead of storing it in memory
only, and to change the timeout setting.
|
Timeout
|
The number of minutes the application user’s
browser session will stay open before automatically signing out the
application user.
|
Before:
<sessionState
mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data
source=127.0.0.1;user id=sa;password="
cookieless="false"
timeout="20"
/>
After:
<sessionState
mode="StateServer"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data
source=127.0.0.1;user id=sa;password="
cookieless="false"
timeout="30"
/>
|