DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> XML學習教程 >> XML詳解 >> 用ASP和Microsoft.XMLDOM分析遠程XML文件
用ASP和Microsoft.XMLDOM分析遠程XML文件
編輯:XML詳解     
xmldom方法打開xml文件,如果是本地的沒有問題,就是用Server.MapPath("xml.xml")的方法,這時能正常分析出內容,但是直接用url卻不顯示出xml內容(在XMLDOM裡表示是支持URL方式的),後來研究一下發現可以用XMLHTTP的方法獲取XML後再分析,代碼如下:

Set http=Server.CreateObject("Microsoft.XMLHTTP")
http.Open "GET","http://www.webjx.com/xml.XML",False
http.send

Set xml=Server.CreateObject("Microsoft.XMLDOM")
XML.Async=False
XML.ValidateOnParse=False
xml.Load(http.ResponseXML)
If XML.ReadyState>2 Then
    Response.Write("文檔已經准備就緒。狀態:"& XML.ReadyState &"<br>")
    Set item=XML.getElementsByTagName("item")
    For i=0 To (item.Length-1)
    Set title=item.Item(i).getElementsByTagName("title")
    Set link=item.Item(i).getElementsByTagName("link")
    Response.Write("<a href="""& link.Item(0).Text &""">"& title.Item(0).Text &"</a><br>")
    Next
Else
    Response.Write("文檔還未准備就緒。狀態:"& XML.ReadyState &"<br>")
End If
Set http=Nothing
Set XML=Nothing


xml.XML文檔的內容如下:

<?XML version="1.0" encoding="utf-8"?>
<channel>
<item>
 <title>測試文檔1</title>
 <link>http://localhost/</link>
</item>
<item>
 <title>測試文檔2</title>
 <link>http://localhostindex.ASP</link>
</item>
</channel>

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved