1

I want to get a xml tag like:

    <link url="http://www.xxx.com/?&q=xxx">xxx</link>

but the SetAttribute method changes & to &amp;, how can I prevent that?

my code:

    XmlElement Link = doc.CreateElement("Link");
    Link2.SetAttribute("url", "http://www.xxx.com/?&q=xxxx");

please help me ! thanks!

4

1 に答える 1

0

エスケープする必要がある他の文字については、このwiki 記事を参照してください。その理由についても説明します。

于 2012-05-25T07:53:05.237 に答える