服务器之家

服务器之家 > 正文

用Asp如何实现防止网页频繁刷新?

时间:2019-10-29 14:55     来源/作者:asp教程网
  1. <%  
  2.     dim RefreshIntervalTime  
  3.     RefreshIntervalTime = 3 '防止刷新的时间秒数,0表示不防止  
  4.     If Not IsEmpty(Session(“visit“)) and isnumeric(Session(“visit“)) and int(RefreshIntervalTime) > 0 Then  
  5.      if (timer()-int(Session(“visit“)))*1000 < RefreshIntervalTime * 1000 then  
  6.       Response.write (“<meta http-equiv=““refresh““ content=“““& RefreshIntervalTime &“““ />“)  
  7.       Response.write (“刷新过快,请稍候“)  
  8.       Session(“visit“) = timer()  
  9.       Response.end  
  10.      end if  
  11.     End If  
  12.     Session(“visit“) = timer()  
  13.     %><!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN“>  
  14.     <html>  
  15.     <head>  
  16.     <title>Asp如何防止网页频繁刷新-wwww.zhangpeng.com.cn</title>  
  17.     <meta http-equiv=“Content-Type“ content=“text/html; charset=gb2312“>  
  18.     <link rel=“stylesheet“ type=“text/css“ href=“style.css“>  
  19.     <style type=“text/css“>  
  20.     </style>  
  21.     </head>  
  22.     <body style=“background-color:#666666;font-size:36pt;font-family:黑体;color:#FFFFFF;“>  
  23.     Asp如何防止网页频繁刷新-www.zhangpeng.com.cn  
  24.     </body>  
  25.     </html> 
标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
返回顶部