0
Posted on 8:02 AM by Softminer and filed under

the lable lblName is in MasterPage and you want to change it in Code behind.

Label Mylabel = (Label)Master.FindControl("lblName");
Mylabel.Text = "New Text";
0
Responses to ... Change Master page in Runtime ASP.NET 2