How Can find Master page control on Derived Page in Asp.net
How Can find Master page control on Derived Page in Asp.net
Logic On Derived Page :-
Label lblHeading = this.Master.FindControl("lblHeading") as
Label;
if (lblHeading != null)
lblHeading.Text = "Kandy";
Comments
Post a Comment