asp 延时 页面延迟的三种方法

来源:asp之家 时间:2011-03-31 11:04:00 

ASP页面延迟的两个简单方法
asp延时第一种

代码如下:


<% Response.Buffer = True %> 
<% 
' Setup the variables necessary to accomplish the task 
Dim TimerStart, TimerEnd, TimerNow, TimerWait 
' How many seconds do you want them to wait... 
TimerWait = 5 
' Setup and start the timers 
TimerNow = Timer 
TimerStart = TimerNow 
TimerEnd = TimerStart + TimerWait 
' Keep it in a loop for the desired length of time 
Do While (TimerNow < TimerEnd) 
' Determine the current and elapsed time 
TimerNow = Timer 
If (TimerNow < TimerStart) Then 
TimerNow = TimerNow + 86400 
End If 
Loop 
' Okay times up, lets git em outa here 
Response.Redirect "nextpage.html" %> 


asp延时二、
代码如下:


<% 
Sub TimeDelaySeconds(DelaySeconds) 
SecCount = 0 
Sec2 = 0 
While SecCount < DelaySeconds + 1 
Sec1 = Second(Time()) 
If Sec1 <> Sec2 Then 
Sec2 = Second(Time()) 
SecCount = SecCount + 1 
End If 
Wend 
End Sub 
%> 

' To change delay adjust here 
<% TimeDelaySeconds(2) %> 


asp延时第三种方法

代码如下:


'asp延时方法 
Sub DelayTime(secondNumber) 
dim startTime 
startTime=NOW() 
do while datediff("s",startTime,NOW())<secondNumber 
loop 
End Sub 

call DelayTime(5) 

测试用可以,但是这样的代码很占CPU,不推荐访问量大的站使用……

标签:asp,延时,延迟
0
投稿

猜你喜欢

  • python 网络爬虫初级实现代码

    2021-10-02 12:24:13
  • Python 查看文件的编码格式方法

    2021-11-01 10:50:39
  • Python cookbook(数据结构与算法)将名称映射到序列元素中的方法

    2021-06-06 01:26:54
  • Django 通过JS实现ajax过程详解

    2023-08-17 08:00:46
  • scrapy-redis源码分析之发送POST请求详解

    2021-05-19 05:24:03
  • MySQL下载安装配置详细教程 附下载资源

    2024-01-29 10:15:41
  • Python中pass的作用与使用教程

    2023-05-05 23:05:05
  • python实现双链表

    2022-06-20 01:47:48
  • 二级域名原理以及asp实现程序

    2007-08-03 13:08:00
  • XHTML代码的基本应用

    2007-10-26 12:32:00
  • mysql socket文件作用详解

    2024-01-24 02:18:53
  • MySQL 如何修改root用户的密码

    2024-01-23 19:34:31
  • python字符串常用方法

    2023-05-29 13:54:15
  • Pandas进行数据编码的十种方式总结

    2021-10-17 19:05:56
  • 如何将python代码生成API接口

    2022-10-27 14:37:39
  • Python如何获取实时股票信息的方法示例

    2021-10-13 19:45:54
  • Python提取频域特征知识点浅析

    2021-10-31 08:01:31
  • Vue Router根据后台数据加载不同的组件实现

    2023-07-02 16:59:14
  • 微信小程序导入Vant报错VM292:1 thirdScriptError的解决方法

    2024-04-19 09:47:25
  • python 实现一个简单的线性回归案例

    2023-05-08 23:40:25
  • asp之家 网络编程 m.aspxhome.com