1. install MSXML3 or MSXML4
2. 
<%
DIM objSrvHTTP
Set objSrvHTTP = Server.CreateObject ("MSXML2.ServerXMLHTTP")
objSrvHTTP.open "GET","http://otherweb.com/xml.asp", false
objSrvHTTP.send
xmlstr = objSrvHTTP.responseXML.xml'...
%>

解决方案 »

  1.   

    http://www.csdn.net/expert/topic/411/411075.shtm
    分数为150分
    十万火级,如能给出答案,再送300分
    有兴趣的人留下email
    我把程序发给你们。 
    一个很cool的表格程序,请问如何改为activeX控件,有兴趣的我把源代码发给你们,感兴趣的人留下email,
    是vc写的非常cool 
      

  2.   

    Set objSrvHTTP = Server.CreateObject ("MSXML2.ServerXMLHTTP")
    create对象无法成功
      

  3.   

    服务器对象 错误 'ASP 0177 : 80040111' Server.CreateObject 失败 /xmlhttp.asp, 行37 80040111 
      

  4.   

    did you install MSXML3? check to see if you have MSXML3.DLL in winnt/system32
      

  5.   

    trySet objSrvHTTP = Server.CreateObject ("MSXML2.ServerXMLHTTP.3.0")
      

  6.   

    不行,还是不行,我可以create msxml2.xmlhttp,但就是不行 serverxmlhttp
      

  7.   

    then use "msxml2.xmlhttp", although it is not recommendedalso, try to install MSXML3 SP1
      

  8.   

    当我用xmlhttp时,asp网页运行狂慢,最后没有结果,出错
    不过客户端vbscript可以,就是放到asp里出问题
      

  9.   

    在nt环境下可以server.createobject了