I am using Update Panel in my application.
I am trying to run Dynamic scripts in that Update Panel but not able to . The scripts which are initially loaded are being run .. Any change in script it is not able to reflect in the Update Panel.
Is there a solution for this ? Please let me know...
.NET ProgrammingAJAXASP.NET
Last Comment
Srinivas_Vengala
8/22/2022 - Mon
burakiewicz
when you register the scripts dynamically are you doing it like this. with the updatepanels in it.
they will also need to be registered with a different key thats why the addition of the datetime.now.ticks
ScriptManager.RegisterStartupScript(UpdatePanel1,UpdatePanel1.GetType(),"Test" + DateTime.Now.Ticks, "MyScript()", true);
We get it - no one likes a content blocker. Take one extra minute and find out why we block content.
Not exactly the question you had in mind?
Sign up for an EE membership and get your own personalized solution. With an EE membership, you can ask unlimited troubleshooting, research, or opinion questions.
I didn't get chance to look into this. I will check this. As this question is abandoned, I am closing the question.
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
they will also need to be registered with a different key thats why the addition of the datetime.now.ticks
ScriptManager.RegisterStar