下面示例代碼是防止用網頁刷新過快
如果多個頁面使用
最好將<%
%>代碼存為一個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
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
//W
C//DTD HTML
Transitional//EN
>
<html>
<head>
<title>Asp 防止網頁頻繁刷新一法
</title>
<meta http
equiv=
Content
Type
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