用Asp如何實(shí)現(xiàn)防止網(wǎng)頁頻繁刷新?
更新時(shí)間:2006年12月21日 00:00:00 作者:
<%
dim RefreshIntervalTime
RefreshIntervalTime = 3 '防止刷新的時(shí)間秒數(shù),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 (“刷新過快,請(qǐng)稍候“)
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如何防止網(wǎng)頁頻繁刷新-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如何防止網(wǎng)頁頻繁刷新-www.zhangpeng.com.cn
</body>
</html>
dim RefreshIntervalTime
RefreshIntervalTime = 3 '防止刷新的時(shí)間秒數(shù),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 (“刷新過快,請(qǐng)稍候“)
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如何防止網(wǎng)頁頻繁刷新-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如何防止網(wǎng)頁頻繁刷新-www.zhangpeng.com.cn
</body>
</html>
您可能感興趣的文章:
- asp防止刷新功能實(shí)現(xiàn)代碼
- ASP.Net防止刷新自動(dòng)觸發(fā)事件的解決方案
- ASP.Net中防止刷新自動(dòng)觸發(fā)事件的解決方案
- asp.net防止刷新時(shí)重復(fù)提交(可禁用工具條刷新按鈕)
- Asp.Net防止刷新重復(fù)提交數(shù)據(jù)的辦法
- ASP.NET防止頁面刷新的兩種解決方法小結(jié)
- php環(huán)境下利用session防止頁面重復(fù)刷新的具體實(shí)現(xiàn)
- php防止網(wǎng)站被刷新的方法匯總
- PHP防止刷新重復(fù)提交頁面的示例代碼
- php采用session實(shí)現(xiàn)防止頁面重復(fù)刷新
- ASP.NET中防止頁面刷新造成表單重復(fù)提交執(zhí)行兩次操作
相關(guān)文章
ASP編程入門進(jìn)階(七):內(nèi)置對(duì)象Server
ASP編程入門進(jìn)階(七):內(nèi)置對(duì)象Server...2007-01-01ASP開發(fā)網(wǎng)頁牢記注意事項(xiàng)
ASP開發(fā)網(wǎng)頁牢記注意事項(xiàng)...2007-03-03