Ramani Sandeep's Blog

DotNetting – Fast , Easy Way of Developing Applications

Change Master Page Dynamically

Posted by ramanisandeep 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 !!!

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <pre> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>