i have two user controls uc1 and uc2.
uc1 as button and uc2 has label,
so default.aspx contain both uc1 and uc2,
How can i change value of label by clicking on button???
remember both are in the different user control.
i have two user controls uc1 and uc2. uc1 as button and uc2 has
Share
Try to use FindControl method of your page and get the control that has the label, and set the text to this control by an exposed property.