ajax中弹出提示框

弹出提示框的几种基本方式:

Response.Write("");

Page.ClientScript.RegisterStartupScript(this.GetType(), "test", "");


Page.RegisterStartupScript("test", "");


在ajax中上述方式将失效,解决办法如下:

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

ps:最后一个参数的bool值表示是否在前一个参数script中加标签,当为false时需要手动加该标签




你可能感兴趣的:(ASP.NET(c#))