<%@ Page Language="C#" AutoEventWireup="true" CodeFile="LoginJump.aspx.cs" Inherits="LoginJump" %>
<!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>跳转页面-
脚本学堂-www.jb200.com</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="http://www.jb200.com">脚本学堂首页</a>...还剩<span id="time" style="font-weight:bold;color: blue">5</span>秒!
<br />
或返回<a href="Login.aspx">登陆页面</a>...
</div>
</form>
</body>
</html>