User-200742054 posted
I am using asp.net forms authentication for our website. User is getting signed out in every 20 mins when they are not doing anything on website. I made change on App Pool in IIS and changed the Idle Time-Out to 60 mins. I also tried changing the webconfig.
I added timeout=120 in <authentication> tag and also added timeout=120 in sessionState tag. But none of these is working. Can someone please help me in increasing the signout time for the user. I want to make it as much as possible.
<sessionState mode="InProc" customProvider="DefaultSessionProvider" timeout="120">
<authentication mode="Forms">
<forms defaultUrl="Welcome" name=".ASPNETAUTH" loginUrl="~/Login/LoginView" timeout="120" slidingExpiration="true"></forms>
</authentication>
Thank you,
JW