4
Reply

Master pages can be changed dynamically or not?

Raghvendra Singh

Raghvendra Singh

Jun 22, 2009
6.5k
0

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

    jitendra patel
    August 13, 2010
    0

    this code write before page_Load event

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

    jitendra patel
    August 13, 2010
    0

    Master pages are a feature in ASP.NET 2.0. They allow you to easily create a consistent feel throughout our website. They also provide an easy way to set/change the master pages at runtime. This is achieved by setting the MasterPageFile property of a page in the PreInit event.

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

    PEEYUSH MISHRA
    July 21, 2009
    0

    Raghvendra, off course you can do dynamically. MasterPage masterPage = new MasterPage(); masterPage.MasterPageFile = "abc.master"; .. ..

    Bishwajit Saha
    June 23, 2009
    0