教程集 www.jiaochengji.com
教程集 >  脚本编程  >  Asp  >  正文 asp IsClientConnected 的作用

asp IsClientConnected 的作用

发布时间:2016-10-07   编辑:jiaochengji.com
教程集为您提供asp IsClientConnected 的作用等资源,欢迎您收藏本站,我们将为您提供最新的asp IsClientConnected 的作用资源

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

<html>
<body>

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

</body>
</html>
输出为

The user is still connected!

您可能感兴趣的文章:
asp IsClientConnected 的作用
ASP IsClientConnected 属性使用方法
asp脚本查询超时的处理函数
ASP 全新接触(1)
突破性的ASP 技术
asp基础语法
asp入门教程:ASP Response 对象教程
如何让asp 以javascript语法运行
ASP 中文教程(一)--asp 简介、安装、以及如何显示中文
asp 与asp的区别(4)

[关闭]
~ ~