相信很多人都還是不了解用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>
以上就是對Asp防止網頁頻繁刷新的實現方法進行了詳細的分析介紹,需要的朋友可以過來參考下,希望對大家有所幫助。