I have an asp:Label inside an update panel that I need to update from both the server application and client side Javascript. I can update the label fine before the first UpdatePanel refresh by setting label.innerHTML. The server changes the label correctly during a panel update. After the update, setting label.innerHTML from client Javascript no longer changes the value shown in the browser.
How can I find the label to continue to update it from Javascript after an UpdatePanel update?