ASP.NET InnerXml 自动/错误地将属性文本附加到标签

发布于 2024-07-09 17:33:18 字数 966 浏览 6 评论 0原文

所以我有一些以下格式的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七婞 2024-07-16 17:33:18

您的 xpath 表达式未指定默认名称空间。 怎么样:

XmlNamespaceManager nsMgr = new XmlNamespaceManager(xmlDoc.NameTable);
nsMgr.AddNamespace("xhtml", "http://www.w3.org/1999/xhtml");

XmlNode node = xmlDoc.SelectSingleNode("somenode/xhtml:html/xhtml:body", nsMgr);

Your xpath expression isn't specifying the default namespace. How about:

XmlNamespaceManager nsMgr = new XmlNamespaceManager(xmlDoc.NameTable);
nsMgr.AddNamespace("xhtml", "http://www.w3.org/1999/xhtml");

XmlNode node = xmlDoc.SelectSingleNode("somenode/xhtml:html/xhtml:body", nsMgr);
甜妞爱困 2024-07-16 17:33:18

由于 元素将默认命名空间定义为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文