MSXML2.dll
大概这样的名吧,你可以在VB6的引用对话框查找,就知道了

解决方案 »

  1.   

    我找到了在C:\WINNT\system32里有
    而且我又再次注册了一下
    RegSvr32 C:\WINNT\SYSTEM32\msxml2.dll 
    可是还是不行
      

  2.   

    function GetXMLDocument()
    {
        var xmlDoc = null;
        if(document.implementation && document.implementation.createDocument)
        {
            xmlDoc = document.implementation.createDocument("","",null);
        }
        else if(typeof ActiveXObject != "undefined")
        {
            var msXmlAx = null;
            try
            {
                msXmlAx = new ActiveXObject("Msxml2.DOMDocument");
            }
            catch(e)
            {
                msXmlAx = new ActiveXObject("Msxml.DOMDocument");
            }
            xmlDoc = msXmlAx;
        }
        if( xmlDoc==null || typeof xmlDoc.load=="undefined")
        {
            xmldoc=null;
        }
        return xmlDoc;
    }
      

  3.   

    似乎是
    var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    这里出现问题
      

  4.   

    new ActiveXObject("Msxml2.XMLHTTP");试试这个