regsvr32 %SystemRoot%\system32\msxml3.dll 试试先

解决方案 »

  1.   

    <script language=javascript>
    //your code
    </script>
    <script language=vbscript>
    Function bytes2BSTR(vIn)
    strReturn = ""
    For i = 1 To LenB(vIn)
    ThisCharCode = AscB(MidB(vIn,i,1))
    If ThisCharCode < &H80 Then
    strReturn = strReturn & Chr(ThisCharCode)
    Else
    NextCharCode = AscB(MidB(vIn,i+1,1))
    strReturn = strReturn & Chr(CLng(ThisCharCode) * &H100 + CInt(NextCharCode))
    i = i + 1
    End If
    Next
    bytes2BSTR = strReturn 
    End Function
    </script>
    <script>
    alert( bytes2BSTR( httpRequest.ResponseBody ) )
    </script>
      

  2.   

    其实,最简单的办法,你的后台,或生成的静态XML文件,使用UTF-8格式,就可以了.