I wanna Prevent auto logout from website for 1 day, the solution that I found is
<sessionState mode="InProc" cookieless="false" timeout="1440" />
notice that my authentication mode is none <authentication mode="None" />
Set in my Web.config
> system.web
tag
I also Used
<authentication mode="Forms">
<forms loginUrl="SignIn.cshtml" protection="All" path="/SignIn" timeout="1440" />
</authentication>
but its not working and authentication expire after 20-30 min and need to login again. any body can help? Is there any other config that I should set?