使用ajax时的提示信息

使用如下形式

ScriptManager.RegisterStartupScript(UpdatePanel1, this.GetType(), "alert", "alert('删除成功!');", true);

 

代替如下形式:
 Page.ClientScript.RegisterStartupScript(this.GetType(), "alert", "<script>alert('删除成功!');</script>");

你可能感兴趣的:(Ajax)