Whats the best way to keep users session active if they are using the application.
Eg
My app redirects users back to the login page if the user session is dropped. Tis us usually no browser activity after 20 mins. The problem is that some users spend time typing a lot of text into textboxes and when they go to submit they get logged out because they have lost their session.
ASP.NET.NET ProgrammingVisual Basic.NET
Last Comment
Ed
8/22/2022 - Mon
Russ Suter
The easiest thing to do would be to modify the web.config file and specify an unusually long timeout for the authentication.
The timeout attribute specifies the number of minutes an authentication session remains active. Be aware, however that this does greatly reduce website security.
Daniel Van Der Werken
The items you need to worry about are the session timeout in the web.config and the application pool timeout as established at the IIS site level.
1. Modify or set the session timeout in the web.config. What Russ Suter says above may work in place of the web.config session timeout setting. Not sure myself.
2. Run the IIS configuration manager on the IIS server and open the application pool settings. There is a timeout value for the application pool. Make sure it matches what you have in the web.config.
I've successfully set a production site to 30 minutes in this fashion in my environment.
Open in new window
The timeout attribute specifies the number of minutes an authentication session remains active. Be aware, however that this does greatly reduce website security.