尝试呈现 XHTML 验证问题 '&' ASP.Net 控件内的字符

发布于 2024-08-25 18:52:45 字数 757 浏览 8 评论 0原文

好吧,描述有点时髦,但这是我的问题:

<asp:ListItem Value="0">All Leads <i>(include Archive & Trash)</i></asp:ListItem>
<asp:ListItem Value="0">All Leads <i>(include Archive &amp; Trash)</i></asp:ListItem>
<asp:ListItem Value="0" Text="All Leads <i>(include Archive & Trash)</i>" />
<asp:ListItem Value="0" Text="All Leads <i>(include Archive &amp; Trash)</i>" />

所有三个版本都呈现以下 html

All Leads <i>(include Archive & Trash)</i>

这当然无法通过 XHTML 验证。它需要像这样渲染 html:

All Leads <i>(include Archive &amp; Trash)</i>

How can I fix this?

谢谢。

Ok, the description is kind of funky, but here's my problem:

<asp:ListItem Value="0">All Leads <i>(include Archive & Trash)</i></asp:ListItem>
<asp:ListItem Value="0">All Leads <i>(include Archive & Trash)</i></asp:ListItem>
<asp:ListItem Value="0" Text="All Leads <i>(include Archive & Trash)</i>" />
<asp:ListItem Value="0" Text="All Leads <i>(include Archive & Trash)</i>" />

All three versions render the following html

All Leads <i>(include Archive & Trash)</i>

This of course fails XHTML validation. It needs to render the html like this:

All Leads <i>(include Archive & Trash)</i>

How can I fix this?

Thanks.

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

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

发布评论

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

评论(1

笑看君怀她人 2024-09-01 18:52:45

答案是你需要这个&就这么愚蠢。

The answer is that you need to this & as stupid as that is.

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