Asp 防止网页频繁刷新一法
来源:无忧视窗 时间:2008-04-07 13:03:00
下面示例代码是防止用网页刷新过快,如果多个页面使用,最好将<%...%>代码存为一个asp文件,在需要的页面最前面include file使用。
<%
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 防止网页频繁刷新一法 - asp之家</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之家欢迎您!</body>
</html>
标签:刷新,asp
0
投稿
猜你喜欢
python神经网络tf.name_scope和tf.variable_scope函数区别
2021-01-24 13:10:48
压缩技术给SQL Server备份文件瘦身
2024-01-26 05:10:23
python实现C4.5决策树算法
2021-10-05 19:35:29
asp利用xmlhttp抓取特定网页内容例子
2008-10-10 12:58:00
python通过函数属性实现全局变量的方法
2023-08-25 04:54:20
自定义Django_rest_framework_jwt登陆错误返回的解决
2021-02-27 22:07:32
Python装饰器代码详解
2021-04-28 23:16:03
Java使用正则表达式(regex)匹配中文实例代码
2023-06-17 07:59:46
关于vue中element-ui form或table lable换行的问题
2023-07-02 17:07:31
SQL Server误区30日谈 第13天 在SQL Server 2000兼容模式下不能使用DMV
2024-01-13 18:34:25
JavaScript 页面编码与浏览器类型判断代码
2024-04-08 10:54:03
php实现的微信分享到朋友圈并记录分享次数功能
2023-10-17 04:32:14
语义化的HTML与搜索引擎优化(如何编写纯语义的HTML进行搜索引擎优化)
2009-12-28 12:42:00
用基于python的appium爬取b站直播消费记录
2021-08-03 21:57:23
纯JS实现五子棋游戏兼容各浏览器(附源码)
2024-04-25 13:14:53
详解django使用include无法跳转的解决方法
2023-04-08 06:13:54
Python实现telnet服务器的方法
2023-01-21 22:45:18
golang API请求队列的实现
2024-03-11 16:39:50
通过实例解析Python调用json模块
2022-09-22 02:05:06
Python pandas DataFrame数据拼接方法
2022-11-08 08:09:36