Hi all,
I'm having a problem with extending Session Timeouts... hopin someone can help..
This is the line under my <system.web> tag in my web.config:
The line above does not extend my session. However, if I set cookieless="tru e", it seems to work just fine.
I don't want the sessionID in my client's address bar and I've looked throughout my code to ensure that the session is not being set elsewhere.
I should also add that the sessionState tag above will work if I put the value below the .NET default (which I believe the 20min).
Any thoughts?
I'm having a problem with extending Session Timeouts... hopin someone can help..
This is the line under my <system.web> tag in my web.config:
Code:
<sessionState mode="InProc" timeout="45" cookieless="AutoDetect"></sessionState>
I don't want the sessionID in my client's address bar and I've looked throughout my code to ensure that the session is not being set elsewhere.
I should also add that the sessionState tag above will work if I put the value below the .NET default (which I believe the 20min).
Any thoughts?
Comment