ASP判断服务器是否支持XmlHttp组件

网络整理 - 09-04
完整的代码如下:

<%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%>