- 1. 都市賽車6 (Asphalt 6)for Android v3.1.6 最...
- 2. 免費ASP論壇程序Web Wiz Forums v9.71 英文版
- 3. 0323版 (卡巴斯基反病毒)病毒庫 Kaspersky Anti-Vi...
- 4. 混淆代碼從而保護知識產權ASP混天綾 V 0.96
- 5. 精通ASP.NET網絡編程 電子書
- 6. 卡巴斯基(Kaspersky)2009 KAV v8.0.0.506 Final 官...
- 7. ASP代碼加密工具 10.0 英文版 Build 008
- 8. ASP代碼加密工具 10.0 中文旗艦版
- 9. 深度學習文章管理系統(自動生成asp代碼) V0.05綠色...
- 10. 輕松學會ASP V1.0 綠色中文版
ASP如何禁止刷新當前頁面
下面給大家介紹兩種關于ASP禁止刷新當前頁面的方法,希望能幫助到大家。
方法1:
<%
Dim SplitReflashPage
Dim DoReflashPage
dim shuaxin_time
DoReflashPage=true
shuaxin_time=10
ReflashTime=Now()
if (not isnull(session("ReflashTime"))) and cint(shuaxin_time)>0 and DoReflashPage then
if DateDiff("s",session("ReflashTime"),Now())<cint(shuaxin_time) then
response.write "<META http-equiv=Content-Type content=text/html; charset=gb2312><meta HTTP-EQUIV=REFRESH CONTENT=3>本頁面起用了防刷新機制,請不要在<b><font color=ff0000>"&shuaxin_time&"</font></b>秒內連續(xù)刷新本頁面<BR>正在打開頁面,請稍候……"
response.end
else
session("ReflashTime")=Now()
end if
elseif isnull(session("ReflashTime")) and cint(shuaxin_time)>0 and DoReflashPage then
Session("ReflashTime")=Now()
end if
randomize timer
regjm=int(rnd*8998)+1000
%>
方法2:
<%
Dim URL
If DateDiff("s",Request.Cookies("oesun")("vitistime"),Now())<2 Then
URL=Request.ServerVariables("Http_REFERER")
Response.Write("<meta http-equiv=""refresh"" content=""2;URL="&URL&""">")
Response.Write("防刷新,兩秒后自動跳轉")
Response.End
End IF
Response.Cookies("oesun")("vitistime")=Now()
%>