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 ?