1. 首页
  2. 数据库
  3. 其它
  4. asp下的一个检测链接是否正常的函数

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

上传者: 2021-01-16 17:31:09上传 PDF文件 16.24KB 热度 7次
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 r
用户评论