my web app sign out every one minute, .aspxauth cookie set to (20 days) and asp.net_sessionid set to (session end), i want to make my site (remember me).
i am using the below code -but to no avail-:
<authentication mode="Forms">
<forms
loginUrl="~/Account/Login.aspx"
protection="All"
timeout="30160"
name=".ASPXAUTH"
path="/"
requireSSL="false"
slidingExpiration="false"
defaultUrl="~/Default.aspx"
cookieless="UseCookies"
enableCrossAppRedirects="false" />
</authentication>
How do I prevent my app from signing out so often?