日期:2014-05-17  浏览次数:20892 次

怎样用vbscript 创建xmlhttp对象?
写了一个
set   xmlhttp=CreateObject( "Msxml2.XMLHTTP ")
结果报错

Microsoft   VBScript   运行时错误   错误   '800a01ad '  

ActiveX   部件不能创建对象:   'Msxml2.HMLHTTP '  


------解决方案--------------------
全部代码帖上来....
------解决方案--------------------
set xmlhttp=Server.CreateObject( "Msxml2.XMLHTTP ")
------解决方案--------------------
或者用 set xmlhttp=new ActiveXObject( "Msxml2.XMLHTTP ")