ASP objects: A tutorial on the use of isclientconnected

Source: Internet
Author: User
Tags object end resource client
In the study and use of ASP, response object involved in a lot of aspects, want to master also is not a day or two, I was also recently found that response object has such a property, on the ASP in some large resource page, there is a certain "optimization" effect, That's the isclientconnected attribute.

This 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.


isclientconnected Related Instructions

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


Grammar

Response.IsClientConnected ()

Notes

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.


Sample

The following is a reference fragment:
<%
' Check to ' if the ' client is connected
If response.isclientconnected Then
Response.Flush
Else
Response. End
End If
%>


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.