服务器之家

服务器之家 > 正文

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

时间:2019-10-27 10:52     来源/作者:asp代码网

代码如下:

<%  
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  
%>

标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
返回顶部