简单生活

Simple life , it's as easy as 1,2,3...

XMLHttp组件的检测

XMLHttp组件在很多场合可以用到,Z-Blog提供的在线安装主题和插件,便是通过这个实现的。还有,诸如小偷程序,在线采集等等都是通过这个实现的。

折叠-ASP/Visual Basic代码复制内容到剪贴板
  1. <%    
  2. On Error Resume Next    
  3. Response.Write "<h3>服务XmlHttp组件支持情况:</h3>"    
  4. 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")          
  5. for i=0 to ubound(oxml)    
  6. Set getxmlhttp = Server.CreateObject(oxml(i))    
  7. If Err Then    
  8. Err.Clear    
  9. Response.Write oxml(i)"不支持<br/>"    
  10. else    
  11. Response.Write oxml(i)" 支持<br/>"    
  12. end if    
  13. next    
  14. %>    

阅读全文...

分页:«1»
Powered By Z-Blog 1.8 Walle Build 91204
Copyright © 2007-2011 Wilf.cn. Some Rights Reserved