Use the XMLDOM method to open the XML file, if it is a local, it is to use server.mAppath ("XML.xml") method, then you can analyze the content normally, but use the URL but does not show XML content (in XmLDom The in support of the URL mode), later studied that I found that the XMLHTTP can be used to obtain XML and then analyze, the code is as follows: set http = server.createObject ("Microsoft.xmlhttp") http.open "get", "http: //localhost/xml.xml",Falsehttp.send Set xml = Server.CreateObject ( "Microsoft.XMLDOM") xml.Async = Falsexml.ValidateOnParse = Falsexml.Load (http.ResponseXML) If xml.ReadyState> 2 Then Response. Write ("Document is ready. Status:" & XML.ReadyState & "
") Set item = Xml.GtelementsBytagname ("item") for i = 0 to (item.length-1) set title = Item. Item (i) .GetelementSbyTagname ("Title") set link = item.item (i) .getelementsBytagname ("link") response.write ("" & title.Item (0) .Text & "") Nextelse Response.write ("Document is not ready. Status:" & XMl.ReadyState & "
") End ifset http = NothingSet XML = Nothing XML.XML documentation is as follows: XML Version = "1.0" Encoding = "UTF-8"?>