S
Steven Blair
I have the following code:
Session["CurrentUser"] = new CurrentUser("TEST");
When I postback to the server, the Session["CurrentUser"] is null.
My guess is a only the refence to my actual class is stored, rather than
the class.
Looking on the internet, one solution posted was populating
Session["CurrentUser"] in
Session_Start in a global.asax file. Again, on postback, the value is
still null.
Can anyone help me out with this problem?
Steven
Session["CurrentUser"] = new CurrentUser("TEST");
When I postback to the server, the Session["CurrentUser"] is null.
My guess is a only the refence to my actual class is stored, rather than
the class.
Looking on the internet, one solution posted was populating
Session["CurrentUser"] in
Session_Start in a global.asax file. Again, on postback, the value is
still null.
Can anyone help me out with this problem?
Steven