程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> 用Asp如何實現防止網頁頻繁刷新?

用Asp如何實現防止網頁頻繁刷新?

編輯:關於ASP編程
<%
    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如何防止網頁頻繁刷新-wwww.zhangpeng.com.cn</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.zhangpeng.com.cn
    </body>
    </html>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved