My master page:

public partial class MasterPages_Main : System.Web.UI.MasterPage
{
    public bool IsLoggedIn;

    protected void Page_Load(object sender, EventArgs e)
    {

        // Check login
        LoggedInUser ThisUser = new LoggedInUser();
        IsLoggedIn = ThisUser.IsLoggedIn;

        Response.Write("Master" + IsLoggedIn.ToString());

    }

This outputs 'True', we are logged in.

On my content page I do:

protected void Page_Load(object sender, EventArgs e)
{

    Response.Write("CONTENT:" + Master.IsLoggedIn.ToString());
}

But this outputs 'False'.

So the actual page output is:

Content:False
Master:True

On my content page I need to redirect if the user is logged in, but this value is always false from the content pages point of view! How can I resolve this?

link|improve this question

Solved, changing master to page_init works. – Tom Gullen Mar 20 '11 at 16:45
feedback

3 Answers

up vote 2 down vote accepted

Content Page load event occurs before Master Load (from here). So you probably need to change the logic, and maybe call some content page's methods from master Page_Load. Or set IsLoggedIn inside Master Init event handler.

link|improve this answer
Thanks, init didn't work as it did the same things for some other logic, but modularising it and putting some logic inside master functions seems to have resolved this. – Tom Gullen Mar 20 '11 at 17:02
feedback

The master page is called after your code for Page_Load(). Try this:

Protected void Page_Load(object sender, EventArgs e)
{
    base.Page_Load(sender,e); 
    Response.Write("CONTENT:" + Master.IsLoggedIn.ToString());
}
link|improve this answer
If it's never called then how is it currently outputting Master:True? – David Mar 20 '11 at 16:38
Sorry that doesn't work. Also I think it is loading, because it's getting everything fine, but it's just loading in the wrong order – Tom Gullen Mar 20 '11 at 16:42
Changing the master page_load to page_init seems to force it to load first which works. – Tom Gullen Mar 20 '11 at 16:44
see above for correct code. The default case is that base.Page_Load is called after your inherited Page_Load() -- the code above will fix this. – Hogan Mar 20 '11 at 16:44
Yes, Page_Init is called before Page_Load in the Page Life Cycle. – Hogan Mar 20 '11 at 16:45
feedback

Change Master Page_Load to Page_Init, this will force it to execute before the content page.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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