ASP一个检测链接是否正常的函数
来源:互联网 责任编辑:栏目编辑 发表时间:2013-07-01 09:44 点击:次
<%
Function urlChk(sUrl)
on error resume next
Set xmlHttp = Server.CreateObject("Microsoft.XMLHTTP")
xmlHttp.open "GET",sUrl,false
xmlHttp.send
if xmlHttp.Status <> 200 then
urlChk=false
else
urlChk=true
end if
End Function
sUrl="http://code.dlstu.cn"
if urlChk(sUrl) then
response.write(sUrl&"(可以正常访问!)")
else
response.write(sUrl&"(页面打开错误!)")
end if
%>
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>