对于很多网站来讲,都会用到AJAX,或多或少,可是有些空间或是浏览器不支持XMLHTTP组件的,下面看一下如何来检测! 以下是引用片段: <% On Error Resume Next Response.Write "<h3>服务XmlHttp组件支持情况:</h3>" oxml=array("Msxml2.ServerXMLHTTP.6.0","Msxml2.ServerXMLHTTP.5.0","Msxml2.ServerXMLHTTP.4.0","Msxml2.ServerXMLHTTP.3.0","Msxml2.ServerXMLHTTP","Msxml2.XMLHTTP.6.0","Msxml2.XMLHTTP.5.0","Msxml2.XMLHTTP.4.0","Msxml2.XMLHTTP.3.0","Msxml2.XMLHTTP") for i=0 to ubound(oxml) Set getxmlhttp = Server.CreateObject(oxml(i)) If Err Then Err.Clear Response.Write oxml(i)"不支持<br/>" else Response.Write oxml(i)" 支持<br/>" end if next %> |
|