利用ASP从远程服务器上接收XML数据的方法

代码如下:% dimobjXML dimobjRootElement dimstrValue dimstrInetURL dimstrXML dimitem strInetURL='http://pf.inetsolution.com/inetactive2001/inetactive2001news.xml' DimHttpReq setHttpReq=server.CreateObject('MSXML2.XMLHTTP') HttpReq.open'GET','http://pf.inet

作者: 来源: 时间: 17-11-23 15:16:20

代码如下:<% 
dim objXML 
dim objRootElement 
dim strValue 
dim strInetURL 
dim strXML 
dim item             
strInetURL ="http://pf.inetsolution.com/inetactive2001/inetactive2001news.xml" 
Dim HttpReq  
set HttpReq = server.CreateObject("MSXML2.XMLHTTP")   
HttpReq.open "GET", "http://pf.inetsolution.com/inetactive2001/inetactive2001news.xml", False 
HttpReq.send 
strXML = HttpReq.responseText        
Set objXML = Server.CreateObject("Msxml2.DOMDocument") 
objXML.validateonparse = true 
objXML.async=false 
objXML.loadXML(strXML) 
if objXML.ParseError.errorCode <> 0 then 
    Response.Write("Error: " & objXML.parseError.reason & "<br>") 
    Response.Write("Code: 0x" & hex(objXML.parseError.errorCode) & "<br>") 
    Response.Write("At Line: " & objXML.parseError.line & "<br>") 
    Response.Write("At pos: " & objXML.parseError.linePos & "<br>")                 
else 
    set objRootElement = objXML.documentElement 
    if not isObject(objRootElement) then 
        Response.Write("no file loaded") 
    else 
        Response.Write(objRootElement.childnodes(0).text) 
    end if 
end if 
%> 
11
22
33
隐藏区块

会员注册

本功能为预留功能,暂不支持注册 ^_^

Login

社交帐号登陆

使用以下任意帐号可登陆本站

Close section
Close

联系我们

关于5UCMS 您有任何需求 均可以留言给我们