Would there be any reason why after a user is idle for a specific amount of time on my website, it doesnt log them out. The secure page stays open but then kicks them out if they try to do something.
I thought the following code in the webconfig file should kick the user out?
I thought the following code in the webconfig file should kick the user out?
Code:
<authentication mode="Forms">
<forms name=".Login" loginUrl="index.aspx" defaultUrl="index.aspx" protection="All" timeout="30">
</forms>
</authentication>
<sessionState timeout="30" />