ASP.NET AJAX 's UpdatePanel 中使用Page.ClientScript.RegisterStartupScript 失败

ASP.NET,AJAX 's UpdatePanel 中使用Page.ClientScript.RegisterStartupScript 失败

 

直接使用 System.Web.UI.ScriptManager.RegisterStartupScript(Control control, Type type, string key, string script, bool addScriptTags) 就可以了.

 

如:

System.Web.UI.ScriptManager.RegisterStartupScript(Page, Me.GetType(), "MyScript", "alert('Are you sure.');", True)

你可能感兴趣的:(Ajax,String,asp.net)