在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
首先,先建立一个用于跳转的页面,代码如下。 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="LoginTiao.aspx.cs" Inherits="LoginTiao" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server"> <title>跳转页面</title> <script type="text/javascript"> var i = 5; window.onload=function page_cg() { document.getElementById("time").innerText = i; i--; if(i==0) { window.location.href("XXXXX/Home.aspx"); } setTimeout(page_cg,1000); } </script> </head> <body> <form id="form1" runat="server"> <div style="font-size:small;"> 密码修改成功,请牢记! <br /> 5秒后自动跳到系统<a href="XXXXX/Home.aspx">首页面</a>...还剩<span id="time" style="font-weight:bold;color: blue">5</span>秒! <br /> 或者返回<a href="Login.aspx">登陆页面</a>... </div> </form> </body> </html> 然后在要引用的页面打向我们刚刚建立的页面即可 Response.Redirect("LoginTiao.aspx"); 代码简单就不贴图了! |
请发表评论