当前位置:主页>xml>文章内容
利用ASP从远程服务器上接收XML数据
来源: 作者: 发布时间:2007-04-04  
<%
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
%>
 
上一篇:XML与面向Web的数据挖掘技术   下一篇:建立MS XML 测试环境
 
  相关文章
·XML与面向Web的数据挖掘技术
·建立MS XML 测试环境
·使用模板执行SQL查询
·在模板中指定XSL样式表
·用XML在页面内刷新数据
·HTML如何向XML迁移
·用XSL和ASP实现分页功能
·XML串行化数据的基础
·用XMLTextReader类加速XML存取
·W3C有意推广XML新标准 为兼容性吵翻了
·用XML+VBS在ASP中实现报表的打印
·如何在HTML中引用XML数据
 
【关闭窗口】
推荐本站资源
最新文章