I am searching to find a way to read and write on session data but with out having the HttpContext.Current.
Why I won to do that ?, because I wish to make some action with the user Session after the page have been close and unloaded.
For example, a user load and see a page, then I create a thread to make some action and let user go. Inside this thread I like to read the session data, but in this case HttpContext.Current is not exist any more.
So is there a way to read Session Data knowing just the session id.
I store my session inside an sql server, and I see them... its there on table ASPStateTempSessions :)
How can I read them "offline" and manipulate them ?
Thank you in advanced.