I'm working with a web application that performs a Session.Timeout = 30
in code, and it is this part that confuses me, since in the web.config
the following configurations are available:
<authentication mode="Forms">
<forms defaultUrl="Login.aspx" loginUrl="Login.aspx" name="AuthenticationAgeAdmin" protection="None" timeout="60"/>
</authentication>
<sessionState mode="InProc" timeout="60" cookieName="nombreCookie"/>
What is the difference between the different configurations and what is done in code and what would be the best way to configure these times.
I have been reading some cases that report problems with TimeOut but I can not understand these differences.