首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web Service >

SelectSingleNode如何获取xml一个子节点的值?

2012-02-11 
SelectSingleNode怎么获取xml一个子节点的值??REQUESTROUTEVERSION 2.0 /VERSIONOBJ_RANGE 01

SelectSingleNode怎么获取xml一个子节点的值??
<REQUEST>
<ROUTE>
<VERSION> 2.0 </VERSION>
<OBJ_RANGE> 01 </OBJ_RANGE>
<RET_FLAG> Y </RET_FLAG>
</ROUTE>  
</REQUEST>                    

strXmlpath   =   "D:/桌面/xml/loginreq.xml ";
xmldoc.Load(strXmlpath);
XmlDocument   xmldoc   =   new   XmlDocument();
XmlNode   nodeXml   =   xmldoc.SelectSingleNode(   "VERSION ");//这里取不到节点,为什么???
strText   =   nodeXml.InnerXml;

请给我看一下!

[解决办法]
XmlDocument xmlDocument = new XmlDocument();
xmlDocument.Load(strXmlpath);
XmlNode node = xmlDocument.SelectSingleNode( "//appSettings ");

热点排行