timeout value of session

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I set in web.config, so that session is enable, but never timeout? Thank you.
 
Hi,

as far as I know, it's not possible to configure session to never
timeout. It's correct, if the sessions will never expire, sooner or
later your server will run out of memory resource. You can release them
programmatically. It's possible but not correct.

HTH,
Stefano Mostarda MCP
Rome Italy
 
You can't do that, but is that really the behavior that you would want? Eventually your machine would run out of space unless you manually free all of your
session data, and even then you can't be guarenteed that your user would execute the code paths to free the session data

Chris
--------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top