Posted on 2009-09-21 18:52
S.l.e!ep.¢% 閱讀(266)
評論(0) 編輯 收藏 引用 所屬分類:
HTML
<%
Response.Charset="gb2312"
??? Dim node
??? Set objDom = Server.CreateObject("Microsoft.XMLDOM")
??? objDom.async = false
??? objDom.load(Server.MapPath("test.xml"))
??? Set root = objDom.documentElement
??? Set nodeLis = root.childNodes
Set node = nodeLis.NextNode()
??????? Response.Write(node.selectSingleNode("X").text&"<BR>")
??????? Response.Write(node.selectSingleNode("Y").text)
%>