简体   繁体   中英

Change the master page from code behind

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?

Set it in the Pre_Init event:

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

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

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";
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM