thanks
master page
Can we change the value of the label control that are in the master page from the content page event.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Suthish NairPosted Feb 17, 2011, 2:07 PM
Suthish NairPosted Feb 16, 2011, 5:06 AM
Update with correct samples....
Label lbltemp = (Label)this.Master.FindControl("LabelId");
lbltemp.Text = new value;
Krishna GaradPosted Feb 16, 2011, 3:26 AM
Label lbltemp=(Label)this.Master.FindControl("LabelId");
lbltemp.Text=new value;