本文介绍了提供了XmlNamespaceManager,但仍然获得“ Namespace Manager或XsltContext需要”。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试阅读以下内容并在其中选择一个节点
i am trying to read the following and select a node in it
<ns1:OrderInfo xmlns:ns1="http://xxxxxx Some URL XXXX">
<pricing someAttrHere>
<childnodes>
</pricing>
</ns1:OrderInfo>
。
XmlDocument document = new XmlDocument();
document.Load(Server.MapPath("order.xml"));
XmlNamespaceManager manager = new XmlNamespaceManager(document.NameTable);
manager.AddNamespace("ns1", "http://xxxxxx Some URL XXXX");
query = "/ns1:OrderInfo/pricing";
XmlNodeList nodeList = document.SelectNodes(query);
但它总是给出需要名称空间管理器或XsltContext
but it always give "Namespace Manager or XsltContext needed"
如您在上面看到的,我使用XmlNamespaceManager添加了名称空间,但仍然给出错误
,请提供任何帮助
as you can see above i add namespace using XmlNamespaceManager and still give the errorplease any help
推荐答案
您还需要使用您的XmlNamespaceManager:
You need to use your XmlNamespaceManager as well:
XmlNodeList nodeList = document.SelectNodes(query, manager);
这篇关于提供了XmlNamespaceManager,但仍然获得“ Namespace Manager或XsltContext需要”。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!