Three methods of ASP delay page delay-Application Tips

Source: Internet
Author: User
Two simple ways to delay ASP pages
ASP delay of the first
Copy Code code as follows:

<% Response.Buffer = True%>
<%
' Setup the variables necessary to accomplish the task
Dim Timerstart, Timerend, Timernow, timerwait
' How many seconds do your want them to wait ...
timerwait = 5
' Setup and start ' timers
Timernow = Timer
Timerstart = Timernow
Timerend = Timerstart + timerwait
' Keep it in a loop for the desired length of
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 and lets git em outa here
Response.Redirect "Nextpage.html"%>

ASP delay two,

Copy Code code as follows:

<%
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 the change delay adjust here
<% timedelayseconds (2)%>

The third method of ASP delay
Copy Code code as follows:

' ASP Delay method
Sub Delaytime (Secondnumber)
Dim starttime
Starttime=now ()
Do While DateDiff ("s", Starttime,now ()) <secondnumber
Loop
End Sub

Call Delaytime (5)

Test can be used, but such a code is very CPU, do not recommend a large number of stations to use ...
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.