Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a c# web application which continues to timeout intermittently even though I have <sessionState mode="InProc" timeout="120"/> set in the web config. I've also checked the event viewer on the server to see if the app pool is recycling, which it is not. I also checked the code to see if there is any funky code which might cause issues and I'm not seeing anything. Any ideas as to what might cause this?

share|improve this question
Are you updating any files during this time? – ChrisBint Dec 18 '12 at 23:41
no not updating any of the files. I'll be doing a few postbacks, then BAM, the session will time out. Also there were a few other people on the system trying it out and I'm wondering if that could have something to do with it. – Ben Dec 18 '12 at 23:44
@Ben There is a solution I have made for same problem. I have created a class "BasePage" that extends System.UI.Page and overrides page load event. In page load event inject a javascript that sets timeout value using setTimeOut. Using jquery document.load() clear time out and set it again. Now, inherit each and every page with BaseCalss, so that in page_load every page will be injected with the javascript. When u click or keypress timeout will be reset. If you don't click then setTimeout function will redirects logout page automatically. Sorry, I can't give you the code as it is confidential. – Dev Dec 19 '12 at 4:54

1 Answer

IIS may be losing your SessionState.

Some links you would like to check:

Losing session in ASP.NET C#

Losing Session State

(MSDN) ASP.NET Session State

Here, we solved this by changing the SessionState mode to StateServer in the web.config file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.