在ASP中,怎么每隔一段时间自动刷新页面?(9分)

  • 主题发起人 主题发起人 tingyuxuan1
  • 开始时间 开始时间
T

tingyuxuan1

Unregistered / Unconfirmed
GUEST, unregistred user!
请给一段具体的代码,谢谢。
 
这好像用html就可以完成,和Asp无关
自动转向到其他网页,5秒钟后
<html>
<head>
<title>Untitleddo
cument</title>
<meta http-equiv="Content-Type" content="text/html;
charset=gb2312">
<meta http-equiv="refresh" content="5;URL=http://www.other.com/index.htm">
</head>
8秒钟后刷新此网页
<html>
<head>
<title>Untitleddo
cument</title>
<meta http-equiv="Content-Type" content="text/html;
charset=gb2312">
<meta http-equiv="refresh" content="8">
</head>
当然用JavaScript设置定时器,也可以完成
 
后退
顶部