软件教程

Asp防止网页频繁刷新的源码

来源: 本站    类别: 软件教程    日期: 2015/9/1

 <%
dim RefreshIntervalTime
RefreshIntervalTime = 3 '防止刷新的时间秒数,0表示不防止
If Not IsEmpty(Session("visit")) and isnumeric(Session("visit")) and int(RefreshIntervalTime) > 0 Then
 if (timer()-int(Session("visit")))*1000 < RefreshIntervalTime * 1000 then
  Response.write ("<meta http-equiv=""refresh"" content="""& RefreshIntervalTime &""" />")
  Response.write ("刷新过快,请稍候")
  Session("visit") = timer()
  Response.end
 end if
End If
Session("visit") = timer()
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Asp如何防止网页频繁刷新-www.cnhww.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="style.css">
<style type="text/css">
</style>
</head>
<body style="background-color:#666666;font-size:36pt;font-family:黑体;color:#FFFFFF;">
Asp如何防止网页频繁刷新-www.cnhww.com
</body>
</html>

 


相关文章


Copyright © 2004 - 2024 CNHWW Inc. All Rights Reserved
石家庄市征红网络科技有限公司版权所有 邮政编码:050051
服务电话:0311-85315152 13931185013 在线客服QQ:81447932 / 81447933 邮箱: cnhww@163.com