用xmldom方法開啟xml文件,如果是本地的沒有問題,就是用Server.MapPath("xml.xml")的方法,這時能正常分析出內容,但直接用url卻不顯示出xml內容(在XMLDOM裡表示是支援URL方式的),後來研究一下發現可以用XMLHTTP的方法取得XML後再分析,程式碼如下:
Set http=Server.CreateObject("Microsoft.XMLHTTP")
http.Open "GET"," http://www.downcodes.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>