I seem to have a problem with timeouts and authentication forms in my application. The application is based on MVC3 and heavily AJAX. I find that even when the user is constantly working on the application and is not idle, sometimes they are pushed, and then the forms authentication goes into the redirect cycle with error 302.
The application is hosted by a provider who tells me that they have increased session timeouts to 60 mints. My web.config setting for the application is as follows.
<authentication mode="Forms">
<forms loginUrl="~/Account/LogOn" timeout="2880" cookieless="UseCookies" slidingExpiration="true"/>
</authentication>
Why do I get session timeouts? Are there any settings that I can check / change to stop this?
Thanks,
source
share