Session inactivity
Hi
I am running my whole site accordign to this book.
For the admin pages, I want the admin user to remain logged in to the system for atleast 1 hour.
In the web.config, I have set the session to 60 minutes:
<sessionState
mode="InProc"
cookieless="false"
timeout="60"
/>
However, it seesm that the system logs out the user after 5 minutes of inactivity.
Any idea how to resolve this issue?
Thanks
|