如何使 xml 不自动替换 ASP.NET 中的 & 字符

发布于 2024-11-16 11:35:25 字数 433 浏览 3 评论 0原文

有一种方法采用 Excel 格式制作的 *.xml 模板并向其中插入一些文本。 当我插入带有 \r\n 符号的文本时,Excel 会忽略刹车并将所有内容写入一行。事实证明,Excel 需要 xml 中的 "
" 而不是 "\r\n"。所以我试图替换

NewText = NewText.Replace("\r\n", "
").Replace("\n", "
");
node["Data"].InnerText = NewText;

但后来我发现,所有 "
" 都隐式更改为 "
"通过 XmlDocument。 我应该如何保存其中包含 "
" 的 xml?

There is a method wich takes the *.xml template made with Excel formatting and insert some text into it.
When I'm inserting text with \r\n symbols, Excel ignores the brakes and write all in one line. It turns out, that Excel needs the "
" in xml instead of "\r\n". So i'm trying to replace

NewText = NewText.Replace("\r\n", "
").Replace("\n", "
");
node["Data"].InnerText = NewText;

But then I see, that all the "
" are implicitly changed with "& ;#10;" by XmlDocument.
What should I do to save xml with "
" in it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文