Reputation: 2039
I have 2 master page: master1.master, master2.master And i have another nested master page nestedMaster.master that nested from master1.master.
Question: How can i change nested master page file of nestedMaster.master at runtime?
Upvotes: 1
Views: 748
Reputation: 94625
Handle the Page_PreInit event of content page and set MasterPageFile
property.
public void Page_PreInit()
{
this.Master.MasterPageFile = "~/master2.master";
}
Upvotes: 2
Reputation: 63065
public class AdminBasePage : BasePage
{
protected override void SetMasterPageFile()
{
Page.Master.MasterPageFile = "~/PathToMaster/Site.Master";
}
}
http://www.asp.net/master-pages/tutorials/nested-master-pages-vb#
Upvotes: 1