selectSingleNode集中的子节点取值
结构
<ITEM>
<ID/>
<MenuTitle/>
</ITEM>
<ITEM>
<ID/>
<MenuTitle/>
</ITEM>
set NodeList=RootNode.selectSingleNode("Item[ID="& MenuID &"]")
response.write NodeList.childnodes(0).Text
是正确的
response.write NodeList.childnodes("ID").Text
如何区得NODE名称取值,而不是数字来取值
------解决方案--------------------
response.write NodeList.selectSingleNode("ID").Text