ASP.NET InnerXml 自动/错误地将属性文本附加到标签
所以我有一些以下格式的 XML:
<somenode>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title/>
</head>
<body>
<p>P one</p>
<p>Another p</p>
</body>
</html>
</somenode>
嵌套在一些 html 中,我认为这不会成为问题,因为它只会被视为 xml。
我正在尝试选择 的内容 (InnerXml) 标签。 但是,using
xmlDoc.SelectSingleNode("somenode/html/body")
返回 null
,而 using
xmlDoc.GetElementsByTagName("body")[0].InnerXml
给出 InnerXml - 但每个
附加了 xmlns="http://www.w3.org/1999/xhtml"
- 所以结果看起来像:
<p xmlns="http://www.w3.org/1999/xhtml">P one</p><p xmlns="http://www.w3.org/1999/xhtml">Another p</p>
有人能解释一下吗? 似乎有些非常奇怪的行为,任何帮助将不胜感激。 我只使用 ASP.net 2.0,所以不幸的是尝试 linq 不是一个选择。
So I have some XML in the following format:
<somenode>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title/>
</head>
<body>
<p>P one</p>
<p>Another p</p>
</body>
</html>
</somenode>
Nestled in there is some html, which I didn't think would be an issue as it would just be treated as xml.
I'm trying to select the contents (InnerXml) of the <body> tag. However, using
xmlDoc.SelectSingleNode("somenode/html/body")
returns null
, and using
xmlDoc.GetElementsByTagName("body")[0].InnerXml
gives the InnerXml - but each <p> has xmlns="http://www.w3.org/1999/xhtml"
appended to it - so the result looks like:
<p xmlns="http://www.w3.org/1999/xhtml">P one</p><p xmlns="http://www.w3.org/1999/xhtml">Another p</p>
Can anyone shed some light on this? Seems like some really weird behavior, any help would be appreciated. I'm only using ASP.net 2.0, so unfortunately trying linq isn't an option.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 xpath 表达式未指定默认名称空间。 怎么样:
Your xpath expression isn't specifying the default namespace. How about:
由于
元素将默认命名空间定义为 http:// www.w3.org/1999/xhtml。 默认情况下,其中没有名称空间前缀的所有元素都具有相同的名称空间。
由于 body 标记的内容是 2 个独立的
元素,因此它们都获得声明。 如果您的
元素中有其他元素,它们上不会有声明。
Since the
<html>
element defines the default namespace to be http://www.w3.org/1999/xhtml. All elements inside it without a namespace prefix have the same namespace by default.Since the content of the body tag is 2 separate
<p>
elements, they both get the declaration. If you had other elements inside your<p>
elements, they will not have the declaration on them.