Finding all the active session keys

K

Kevin Jackson

Hello,

Using any of the ASP.NET session storage techniques, is there a method in
one of the HTTP objects that you can get the list of active (not abandoned
or timed out) session keys (and maybe other information about these
sessions)?

I assumed there would be a collection somewhere which held all of the active
session keys but I'm not finding it anywhere.

Thanks

Kevin
 
B

Bruce Barker

there isn't. it up to each session manager to keep the list, it not exposed.
the sqlserver manager just keeps them in a database and just periodically
deletes old ones.

-- bruce (sqlwork.com)
 

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

Top