asp IsClientConnected 的作用

作者:袖梨 2022-07-02

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!

相关文章

精彩推荐