如何在aspx页面的标签控件中显示`&`
如何在 aspx 页面的标签或文本框中显示文本 “将 & 替换为 &”
?当我将 Text="Replace & with &"
放入 aspx 页面时,我得到的输出为“Replace & with &”
How can I show the text "Replace & with &"
in label or textbox in aspx page? When I put Text="Replace & with &"
in aspx page, I get output as "Replace & with &"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 HttpUtility.HtmlEncode("&");这始终有效,并且生成的代码更具可读性。
Use
HttpUtility.HtmlEncode("&")
; this is always working and the resulting code is more readable.将
&
替换为&
:您还可以使其适用于任何字符,而不仅仅是
&
:Replace
&
with&
:You could also make it work for any character, not just
&
: