vote up 0 vote down star

In my MasterPage I am setting a session variable to some value, that I got from the database. The value is shown on the footer of every page, that's why it is in the MasterPage.

protected void Page_Load(object sender, EventArgs e)
{        
    Session["TODAY"] = value_from_DB;
}

Later on, I want to use this value on other pages, but Session["TODAY"] is null, while its value is shown on the footer.

How can I access Session values in pages, the value is set in the masterpage ?

flag

2 Answers

vote up 2 vote down check

As far as I know, this will be because the content page's Page_Load method executes before the master page's Page_Load method, so you're using a session variable before it's created.

link|flag
In other words: know and understand your page lifecycle. – chris Sep 24 at 13:16
@IanT8 you are right- @dbrmr see here- msdn.microsoft.com/en-us/library/… – RichardOD Sep 24 at 13:24
vote up 0 vote down

Yes, you can use a session value on a page that is set in a MasterPage.

Check to make sure that Session["TODAY"] never is set to null anywhere else in your application. Most likely you are overwriting this value later in the page's life cycle.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.