I have problems with an ASP .NET MVC
application. The application does a timeout at about 20 minutes and nothing is done on it.
I have these lines in web.config
:
<authentication mode="Forms">
<forms loginUrl="~/Cuenta/Login" timeout="2880" />
</authentication>
I deactivated the session in this way, thinking that it would be that, but I still have the same problems.
<sessionState mode="Off" timeout="2880" />
Any idea what may be happening?