码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2014-12-02 00:23:05      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:【c#后台提示后调转页面大全】

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);


本文出自 “程序猿” 博客,请务必保留此出处http://haihuiwei.blog.51cto.com/4789207/1585186

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

标签:【c#后台提示后调转页面大全】

原文地址:http://haihuiwei.blog.51cto.com/4789207/1585186

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!