As an asp.net developer we all must have to use update panel for the ajaxifying our application in today’s ajax world. No one likes postaback now. But when we add the some content with the java script under update panel then some times it’s stop working because of the update panel server side behavior. So what we should do? … Here is the trick. Normally we code java script in the asp.net page like following…
Technorati Tags: UpdatePanel,ASP.NET,C#.NET,VB.NET,Microsoft ajax
Instead of this you should use.string alertScript = "javascript:alert('Alter From asp.net page')";ClientScript.RegisterStartupScript(typeof(Page),"alertscript", alertScript);
This will work. Happy coding..string alertScript = "javascript: alert('This is aler from asp.net page')";ScriptManager.RegisterStartupScript(this, this.GetType(), "alertScript", alertScript,true);
Technorati Tags: UpdatePanel,ASP.NET,C#.NET,VB.NET,Microsoft ajax