手机
当前位置:查字典教程网 >编程开发 >ASP教程 >用Asp如何实现防止网页频繁刷新?
用Asp如何实现防止网页频繁刷新?
摘要:

<%

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代码实现access数据导出到excel文件

[ASP]使用类,实现模块化

巧用FileSystem组件实现WEB应用中的本地特定打印

asp防止网页刷新代码

用ASP实现对MP3曲目信息的操作

asp:生成静态页面函数

利用ASP实现事务处理的方法

在asp中通过getrows实现数据库记录分页的一段代码

用ASP实现对ORACLE数据库的操作

如何实现asp无组件生成缩略图

精品推荐
分类导航