Any chance to get Session from HttpSessionState.SessionID?

  • Thread starter Thread starter Uglykid
  • Start date Start date
U

Uglykid

Is there any chance to get a HttpSessionState reference form it's SessionID.
for example:
step1.keep the SessionID in DB
step2.to abandon the Session via the SessionID in DB!

Regards!
 
You can use System.Web.HttpContext.Current.Session in a lot of places to
retrieve the current SessionState instance...
 
Back
Top