熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

Asp防止網頁頻繁刷新一法

2022-06-13   來源: .NET編程 
下面示例代碼是防止用網頁刷新過快如果多個頁面使用最好將<%%>代碼存為一個asp文件在需要的頁面最前面include file使用

<%
dim RefreshIntervalTime
RefreshIntervalTime = 防止刷新的時間秒數表示不防止
If Not IsEmpty(Session(visit)) and isnumeric(Session(visit)) and int(RefreshIntervalTime) > Then
if (timer()int(Session(visit)))* < RefreshIntervalTime * then
Responsewrite (<meta httpequiv=refresh content=& RefreshIntervalTime & />)
Responsewrite (刷新過快請稍候)
Session(visit) = timer()
Responseend
end if
End If
Session(visit) = timer()
%><!DOCTYPE HTML PUBLIC //WC//DTD HTML Transitional//EN>
<html>
<head>
<title>Asp 防止網頁頻繁刷新一法 </title>
<meta httpequiv=ContentType content=text/html; charset=gb>
<link rel=stylesheet type=text/css >
<style type=text/css>
</style>
</head>
<body >
頁面內容頁面內容
</body>
</html>
From:http://tw.wingwit.com/Article/program/net/201311/12991.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.