Asp防止网页频繁刷新的实现方法

来源:爱站网时间:2019-06-15编辑:网友分享
相信很多人都还是不了解用Asp如何实现防止网页频繁刷新的方法,那么接下来的文章我们就去看看Asp防止网页频繁刷新?的实现方法,感兴趣的朋友们一起去参考参考吧。

相信很多人都还是不了解用Asp如何实现防止网页频繁刷新的方法,那么接下来的文章我们就去看看Asp防止网页频繁刷新的实现方法,感兴趣的朋友们一起去参考参考吧。

<%
    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如何防止网页频繁刷新-wwww.zhangpeng.com.cn</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如何防止网页频繁刷新-www.zhangpeng.com.cn
    </body>
    </html>

以上就是对Asp防止网页频繁刷新的实现方法进行了详细的分析介绍,需要的朋友可以过来参考下,希望对大家有所帮助。

上一篇:asp错误的处理方式

下一篇:ASP脚本循环语句介绍

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载