一聚教程网:一个值得你收藏的教程网站

热门教程

asp IsClientConnected 的作用

时间:2022-07-02 22:40:13 编辑:袖梨 来源:一聚教程网

IsClientConnected 的作用是判断否现在与数据库连接的


<%
If Response.IsClientConnected=true then
Response.Write("The user is still connected!")
else
Response.Write("The user is not connected!")
end if
%>



输出为

The user is still connected!

热门栏目