Asp Object 之:IsClientConnected
發(fā)表時間:2024-06-07 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]IsClientConnectedIsClientConnected 屬性只讀,它指示自上次調(diào)用 Response.Write 之后,客戶端是否與服務(wù)器相連。語法Response.IsClientConnected ( ) 注釋該屬性允許用戶在客戶端與服務(wù)器沒有連接的情況下有更多的控制。例如,在從...
IsClientConnected
IsClientConnected 屬性只讀,它指示自上次調(diào)用 Response.Write 之后,客戶端是否與服務(wù)器相連。
語法
Response.IsClientConnected ( )
注釋
該屬性允許用戶在客戶端與服務(wù)器沒有連接的情況下有更多的控制。例如,在從客戶端提出請求起到服務(wù)器作出響應(yīng),其間要用去很長一段時間的情況下,這就可能有助于確保在繼續(xù)處理腳本之前客戶端仍是連通的。
示例
<% 'check to see if the client is connectedIf Not Response.IsClientConnected Then 'get the sessionid to send to the shutdown function Shutdownid = Session.SessionID'perform shutdown processing Shutdown(Shutdownid) End If%>
應(yīng)用于
Response 對象