加入收藏 | 设为首页 | 会员中心 | 我要投稿 银川站长网 (https://www.0951zz.com/)- 云通信、基础存储、云上网络、机器学习、视觉智能!
当前位置: 首页 > 站长学院 > Asp教程 > 正文

ASP实例 Asp 预防网页频繁刷新一法

发布时间:2023-09-04 13:30:23 所属栏目:Asp教程 来源:
导读:下面示例代码是防止用网页刷新过快,如果多个页面使用,最好将<%...%>代码存为一个asp文件,在需要的页面最前面include file使用。以下为引用的内容:<%dim RefreshIntervalTimeRefreshIntervalTime = 3 &#39;防止刷

下面示例代码是防止用网页刷新过快,如果多个页面使用,最好将<%...%>代码存为一个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 防止网页频繁刷新一法 - CuoXIn.com</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;">

页面内容,页面内容

</body>

</html>

(编辑:银川站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章