当前位置:Gxlcms > ASP > asp下的一个检测链接是否正常的函数

asp下的一个检测链接是否正常的函数

时间:2021-07-01 10:21:17 帮助过:41人阅读

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.gxlsystem.com"
if urlChk(sUrl) then
    response.write(sUrl&"(可以正常访问)")
else
    response.write(sUrl&"(访问不了)")
end if

人气教程排行