request一个url看看通不通就行了,图片文件均可。
图片读出width就是通

解决方案 »

  1.   

    检测某个网站的链接速度: 
    把如下代码加入<body>区域中: 
    <script language=javascript> 
    tim=1 
    setInterval("tim++",100) 
    b=1 var autourl=new Array() 
    autourl[1]="www.njcatv.net" 
    autourl[2]="javacool.3322.net" 
    autourl[3]="www.sina.com.cn" 
    autourl[4]="www.nuaa.edu.cn" 
    autourl[5]="www.cctv.com" function butt(){ 
    document.write("<form name=autof>") 
    for(var i=1;i<autourl.length;i++) 
    document.write("<input type=text name=txt"+i+" size=10 value=测试中……> =》<input type=text name=url"+i+" size=40> =》<input type=button value=GO onclick=window.open(this.form.url"+i+".value)><br/>") 
    document.write("<input type=submit value=刷新></form>") 

    butt() 
    function auto(url){ 
    document.forms[0]["url"+b].value=url 
    if(tim>200) 
    {document.forms[0]["txt"+b].value="链接超时"} 
    else 
    {document.forms[0]["txt"+b].value="时间"+tim/10+"秒"} 
    b++ 

    function run(){for(var i=1;i<autourl.length;i++)document.write("<img src=http://"+autourl[i]+"/"+Math.random()+" width=1 height=1 onerror=auto('http://";+autourl[i]+"')>")} 
    run()</script>
      

  2.   

    <%
    'Timeout values in milliseconds
    lngResolveTimeout = 500
    lngConnectTimeout = 500
    lngSendTimeout = 500
    lngReceiveTimeout = 500strTestUrl = "http://www.163.com"Set objHttpRequest = CreateObject("MSXML2.ServerXMLHTTP")
    With objHttpRequest
       .SetTimeouts lngResolveTimeout, lngConnectTimeout, lngSendTimeout, lngReceiveTimeout
       .Open "GET", strTestUrl
       .Send
       Select Case .Status
          Case 200 'No problem!
             Response.Write strTestUrl & " 这个地址没有问题"
          Case 404 'Not found
             Response.Write strTestUrl & " 根本找不到呢 (404 Error)"
          Case Else 'Some other problem
             Response.Write "An unexpected HTTP Status value was returned: " & .Status
       End Select
    End With
    Set objHttpRequest = Nothing
    %>
      

  3.   

    http://community.csdn.net/Expert/topic/3331/3331784.xml?temp=.7648432