im using forms autentication and i have timeout of 80 min . but while working with application , in 5 minutes its again going to login page. how to increase my session time out in web.config file ?
<authentication mode="Forms">
<forms loginUrl="~/Login.aspx" protection="All" timeout="120" name="ShoppingCartCookie" requireSSL="false" slidingExpiration="true" defaultUrl="login.aspx" cookieless="UseCookies" enableCrossAppRedirects="false" />
</authentication>
<system.web>
<sessionState mode="InProc" cookieless="false" timeout="80" />
</system.web>