vote up 6 vote down star
2

Is there any way to access the collection of current sessions in ASP.NET globally from the application?

Thanks.

flag

62% accept rate
you mean programatically? – pablito Jan 18 '09 at 12:22

3 Answers

vote up 4 vote down check

No, sessions are sandboxed, they are totally separate from each other. What you could do is managing a psueudo-session collection in the shared Application object and implement the Session_Start method to populate that collection.

link|flag
vote up 0 vote down

I don't think so, but you can manage your own list in the global.a s a x

void Session_Start(object sender, EventArgs e) 
{
    //add current session to your own application shared collection
}

void Session_End(object sender, EventArgs e) 
{
    //remove session
}
link|flag
Can you inspect the contents of the session though? – John Nolan Jan 18 '09 at 14:06
Session end event wouldn't occur if session is out of process, even in process, it isn't guaranteed that it's trigged: see note on msdn.microsoft.com/en-us/library/… – smoothdeveloper Jan 18 '09 at 15:32
vote up 1 vote down

If you store session state in SQL Server, you would have access to all the sessions via SQL Server.

There is also Application State - which can be used to access information across the application, but this has many caveats.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.