solution function for ASP processing query timeout

Source: Internet
Author: User
Tags end query resource client
Typically used for ASP query timeout, make timeout prompt, retry later. The main application of response isclientconnected this key code.

The IsClientConnected property is read-only, indicating whether the client is connected to the server since the last call to Response.Write.

This property allows the user to have more control when the client is not connected to the server. For example, when a request is made from a client and the server responds with a lengthy period of time, this may help ensure that the client is still connected until the script continues.

The Response isclientconnected property can be used at the time the ASP runs to determine whether the service end is disconnected from the polite end and returns True or false. This also prevents a user from accessing a resource-intensive page because the server-side program continues to execute when the user refreshes or closes the page, which results in no immediate release of the resource.

If Isconnectedafter (then)
Response.Write "<div class=itxt> query timed out, please try again later!" </DIV> "
Response.End
End If

The functions are as follows:

Function Isconnectedafter (Seconds)
Dim StartTime
Dim Pausetime

Isconnectedafter = True
StartTime = Now

Do While DateDiff ("s", StartTime, now) < Seconds
Pausetime = Now
Do While DateDiff ("s", Pausetime, now) < 1
' Do nothing
Loop
Response.Write ""
If response.isclientconnected = False Then
Isconnectedafter = False
Exit Function
End If

Loop
End Function



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.