how to change the value of a control in a master page
- by Azhar
how to change the value of a control e.g. Literal in a user control and that User control is in master page and I want to change the value of that literal from content page.
((System.Web.UI.UserControl)this.Page.Master.FindControl("ABC")).FindControl("XYZ").Text = "";
here ABC is user control and XYZ is Literal control