for example to find a Panel in the Master Page. we want to find the Panel from Content Page
// Casting Panel1 form MasterPage as Panel
Panel panel = (Panel)Master.FindControl("Panel1"); if (panel != null) { panel.Style.Add(HtmlTextWriterStyle.BackgroundColor, "Red"); }
No comments:
Post a Comment