asp防止刷新功能实现代码(3)


        if DateDiff("s",session("ReflashTime"),Now())<posttime then
            call msg("警告!系统已记录您的IP,和刷新次数。\n\n请不要在"&posttime&"秒内连续刷新本页面!","-1")
        else
        session("ReflashTime")=Now()
        end if
    elseif isnull(session("ReflashTime")) and posttime>0 and DoReflashPage then
        Session("ReflashTime")=Now()
    end if
End Sub

调用方法在页面首部加入chkreflash即可