I have a web page named MyPage.aspx and two master page named Home.master and BlanK.master. By default MyPage.aspx uses Home.master.But based on some condition I need to change the master page from Home.aspx to Blank.master.So, how to do this from code behind in c#?I mean how change the master page from code behind?

link|improve this question

67% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Set it in the Pre_Init event:

void Page_PreInit(object sender, EventArgs e)
{
    MasterPageFile = "~/Master1.master";
}

See http://odetocode.com/Articles/450.aspx for some detail and more options.

link|improve this answer
feedback

put the following line in the Page_PreInit method of your codebehind page:

protected void Page_PreInit(object sender, EventArgs e) 
{ 
    this.Page.MasterPageFile = "~/Blank.master";
}
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.