How do I access a asp.net session variable from APP_CODE?

2.3k Views Asked by At

I have seen lots of posts here and elsewhere stating that one can access session variables from app_code. I want to access an already created session.

this code errors out because of a null exception. string myFile = HttpContext.Current.Session["UploadedFile"];

this creates a null session variable. System.Web.SessionState.HttpSessionState Session = HttpContext.Current.Session;

It looks like I can create a new session variable but not access an already created one. Anyone have any idea what might be giving me problems?

1

There are 1 best solutions below

0
On

I was having ths same problem, but I was able to fix it because I controlled where in the event lifecycle I was attempting to leverage HttpContect.Current.Session... it makes a difference because Session isn't available, for example, on construction.

Maybe that will help you.