Hi,
I've got a web application written in ASP class with VBScript. We have a home grown conctact management system for my company that our users stay active in throughout the day. My problem lies with the continued timeout we sometimes experience.
I have tried just about everything to allow an 8 hour timeout for this application. I've set the session timeout to 480 in IIS (running IIS 6 on windows 2k3 SE) and i've also tried coding it in our logon script session.timeout =480 but our users still timeout if inactive for 20 minutes. This seems to sometimes vary, but it is hard to determine exactly when the session variables are getting dumped. I've also checked the Metabase directly to make sure the settings from IIS are saving appropriately.
The way I check to see if a user has timeout our or not is by running a vbscript at page load to see if session("isLogg edIn")="Y". If it is, the session state is still intact and the user carries on, or if it's empty they are redirected back to the logon page. The "isLoggedIn " session variable is only assigned at logon so I know it's not being overwritten, same with session.timeout .
This has been driving me (and my users) absolutely crazy, so I am desperate for a little help. Any ideas if I may have missed something?
~Brian
I've got a web application written in ASP class with VBScript. We have a home grown conctact management system for my company that our users stay active in throughout the day. My problem lies with the continued timeout we sometimes experience.
I have tried just about everything to allow an 8 hour timeout for this application. I've set the session timeout to 480 in IIS (running IIS 6 on windows 2k3 SE) and i've also tried coding it in our logon script session.timeout =480 but our users still timeout if inactive for 20 minutes. This seems to sometimes vary, but it is hard to determine exactly when the session variables are getting dumped. I've also checked the Metabase directly to make sure the settings from IIS are saving appropriately.
The way I check to see if a user has timeout our or not is by running a vbscript at page load to see if session("isLogg edIn")="Y". If it is, the session state is still intact and the user carries on, or if it's empty they are redirected back to the logon page. The "isLoggedIn " session variable is only assigned at logon so I know it's not being overwritten, same with session.timeout .
This has been driving me (and my users) absolutely crazy, so I am desperate for a little help. Any ideas if I may have missed something?
~Brian
Comment