为什么我的提醒没有弹出?Asp.net c#
本文关键字:Asp net 我的 为什么 | 更新日期: 2023-09-27 17:53:16
我的提醒没有弹出。当我用一个断点调试它时,执行这一行
Response.Write("<script>alert('" + " We don't seem to have this user registered. Please try again " + "') ; location.href='Login.aspx'</script>");
不要 需要转义。
可以这样做:
Response.Write("<script>alert('" + " We don'''t seem to have this user registered. Please try again " + "') ; location.href='Login.aspx'</script>");
现在应该弹出了
查看下面的代码示例来获取警告:
代码隐藏:
protected void Page_Load(object sender, EventArgs e)
{
System.Web.UI.ScriptManager.RegisterStartupScript(this, this.GetType(), "abc", "abc();", true);
}
JavaScript: function abc(message) {
alert(message + ", I am an alert box!");
}
更多信息请看我的答案
你也可以试试这个…
System.Web.UI.ScriptManager.RegisterStartupScript(this, GetType(), "showalert", "alert('Your Message.');", true);