<% Set doc = Server.CreateObject("Msxml2.DOMDocument.6.0") doc.Async = False doc.Load(Server.MapPath("info.xml")) Response.Write doc.SelectSingleNode("//test/info1/text()").Text Response.Write doc.SelectSingleNode("//test/info2/text()").Text Response.Write doc.SelectSingleNode("//test/info3/text()").Text Set doc = Nothing %>