Hello,
I've encountered with an difficult bug, that Im not quite sure if there is a good way to solve it. But I have page(.aspx) which contains a control called widget. The widget appears multiple times in the page. And each widget has alot of js and jquery, some of them reads properties from the control. The problem I have is that the control does partial postbacks. And the js isn't being refreshed with the new values. If I register the js again, then the js is called twice. One containg the right values and one containing the old values. I've googled and noticed that it is not possible to remove the added scripts in ScriptManager.RegisterStartupScript. So to my question. Is there any smart way to not call an old js or to replace it with the new js containing the right values?