欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-03-25 21:01:32
function urlchk(surl) on error resume next set xmlhttp =...
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.jb51.net"
if urlchk(surl) then
    response.write(surl&"(可以正常访问)")
else
    response.write(surl&"(访问不了)")
end if

推荐阅读