在ASP中执行Ping命令,并且返回结果
在Win2000系统中,可以通过Wscript.Shell对象的Exec方法执行命令,
简单的代码如下:
0 then strStatus = "在线"
response.write url & " 状态为: " & strStatus
response.write ".
" & replace(strPResult,vbCrLf,"
")
response.write "
慈勤强编写,欢迎访问
target='_blank'>http://blog.csdn.net/cqq"
%>
在XP系统或者Windows.NET Server系统中,可以使用WMI来实现,
代码如下:
0 then
response.write "离线"
else
response.write "在线"
end if
Next
%>
当然,我们也可以自己编写相应的组件或者使用一些现成的组件来实现这样的功能,
这里就不多说了。

