S
Shan Plourde
You need to set your session timeout in your web.config.
<sessionState mode="StateServer"
stateConnectionString="tcpip=127.0.0.1:42424" ... timeout="60"/>
Timeout = "60". This works regardless of your IIS setting described
below I believe. I'm not sure what IIS sessions are.
Open IIS in Computer Management. Right Click on your website and select
Properties from the pop up menu. Navigate to the "Home Directory" tab.
Click the Configuration button. Click the Options tab. This is IIS
session timeout which I believe is different from .NET sessions.
Shan
<sessionState mode="StateServer"
stateConnectionString="tcpip=127.0.0.1:42424" ... timeout="60"/>
Timeout = "60". This works regardless of your IIS setting described
below I believe. I'm not sure what IIS sessions are.
Open IIS in Computer Management. Right Click on your website and select
Properties from the pop up menu. Navigate to the "Home Directory" tab.
Click the Configuration button. Click the Options tab. This is IIS
session timeout which I believe is different from .NET sessions.
Shan