Is there any way to access the collection of current sessions in ASP.NET globally from the application?
Thanks.
|
2
|
|||
|
|
|
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. |
||
|
|
|
|
I don't think so, but you can manage your own list in the global.a s a x
|
||||
|
|
|
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. |
|||
|
|