检测链接 asp下的一个检测链接是否正常的函数
人气:0想了解asp下的一个检测链接是否正常的函数的相关内容吗,在本文为您仔细讲解检测链接的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:asp,检测链接,下面大家一起来学习吧。
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="//www.qb5200.com"
if urlChk(sUrl) then
response.write(sUrl&"(可以正常访问)")
else
response.write(sUrl&"(访问不了)")
end if
加载全部内容