微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

asp.net中倒计时自动跳转页面的实现方法(使用javascript)

首先,先建立一个用于跳转页面代码如下。


<%@ 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 />
秒后自动跳到系统<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");

代码简单就不贴图了!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐