用Asp如何实现防止网页频繁刷新?
用Asp如何实现防止网页频繁刷新?
发布时间:2016-12-29 来源:查字典编辑
摘要:

<%

dimRefreshIntervalTime

RefreshIntervalTime=3'防止刷新的时间秒数,0表示不防止

IfNotIsEmpty(Session(“visit“))andisnumeric(Session(“visit“))andint(RefreshIntervalTime)>0Then

if(timer()-int(Session(“visit“)))*1000<RefreshIntervalTime*1000then

Response.write(“<metahttp-equiv=““refresh““content=“““&RefreshIntervalTime&“““/>“)

Response.write(“刷新过快,请稍候“)

Session(“visit“)=timer()

Response.end

endif

EndIf

Session(“visit“)=timer()

%><!DOCTYPEHTMLPUBLIC“-//W3C//DTDHTML4.01Transitional//EN“>

<html>

<head>

<title>Asp如何防止网页频繁刷新-wwww.zhangpeng.com.cn</title>

<metahttp-equiv=“Content-Type“content=“text/html;charset=gb2312“>

<linkrel=“stylesheet“type=“text/css“href=“style.css“>

<styletype=“text/css“>

</style>

</head>

<bodystyle=“background-color:#666666;font-size:36pt;font-family:黑体;color:#FFFFFF;“>

Asp如何防止网页频繁刷新-www.zhangpeng.com.cn

</body>

</html>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新ASP教程学习
热门ASP教程学习
编程开发子分类