asp.net 后台代码跳转页面前弹出提示框

1、Response.Write
("<script>alert('查询语句执行出错!');window.location.href=DisplayData.aspx</script>");


2、Page.RegisterStartupScript("msg", "<script>alert('查询语句执行出错!');window.location.href='DisplayData.aspx'</script>");
一般后台弹出提示框,都是用Page.RegisterStartupScript,不用Response.Write的

3、 ClientScript.RegisterStartupScript(this.GetType(), "", " <script lanuage=javascript> alert('');location.href='';</script>");  


4、 System.Web.HttpContext.Current.Response.Write(String.Format("<script language=\"javascript\">alert(\"{0}\");window.location.replace(\"{1}\")</script>", strMessage, strRedirectUrl));


5、ScriptManager.RegisterStartupScript(this, this.GetType(), "u1", "alert('内容!')", true);

 

6、Page.ClientScript.RegisterStartupScript(this.GetType(), "d", "alert('请先登录!');location='../login.aspx';", true);

本文转自程序猿博客51CTO博客,原文链接http://blog.51cto.com/haihuiwei/1585186如需转载请自行联系原作者

365850153
上一篇:ASP.Net后台 实现先弹出对话框,再跳转到另一个网页的实现方法


下一篇:Nutanix宣称可运行所有工作负载,超融合能包打天下了?