Ramani Sandeep's Blog

DotNetting – Fast , Easy Way of Developing Applications

Posts Tagged ‘Change Master Page Dynamically’

Change Master Page Dynamically

Posted by Ramani Sandeep on July 14, 2008

Here i the code that shows how to change master page of the page at runtime:

protected void Page_PreInit(object sender, EventArgs e) 

{ 

 if (Session["UserAccount"] == null) //check the user weather user is logged in or not

    this.Page.MasterPageFile = "~/General.master";

 else

    this.Page.MasterPageFile = "~/Member.master";

}

Hope this will help !!!

Posted in ASP.NET | Tagged: , , | Leave a Comment »

 
Follow

Get every new post delivered to your Inbox.

Join 317 other followers