Showing posts with label Master page. Show all posts
Showing posts with label Master page. Show all posts

11 February 2014

How do you acces/modify the Master page label from Content page?

 Label lblName = (Label)Master.FindControl("lblName ");
  lblName.Text = "Jas";

How do you change Master page dynamically at runtime in asp.net?



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