0

I found something to help me get a list of the active sessions from List all active ASP.NET Sessions.

What I now need to do, if possible, is be able to end any of the sessions from this list inside my application. The purpose of this is for user support, I don't have access to the IIS server hosting the app so I can't just jump on there to end sessions. Can anyone help with this?

Community
  • 1
  • 1

1 Answers1

0

You can call the Abandon method on the session, this will cause the End event to rise. Check it out it here.

user449689
  • 3,142
  • 4
  • 19
  • 37