I am using a usercontrol to display label text on the left side of a page and another usercontrol to display the content page, when the text of a field on the content page changes, I need to update the same status on a label on the menu usercontrol on the left.
I have used:
ScriptManager.RegisterClientScriptBlock(this, this.GetType(),"ChangeLabelText", script, false)
to change the text on the left control, the javascript associated with this gets executed but the label still shows the old text even when the text on the content page is updated after page refresh. However, it shows the new updated text when the whole page refreshes.
Please suggest an approach for resolving this issue.