在标签中使用尖括号
本文关键字:标签 | 更新日期: 2023-09-27 17:50:49
在VB中。净标签,
lblNotification.Text = send email to <name@gmail.com> me
O/p我得到的是send email to me
,它不显示<name@gmail.com>
。如何显示包含尖括号的全文。也就是说,我需要将O/P作为send email to <name@gmail.com> me
。谢谢。
使用以下代码:
Protected Overrides Sub OnLoad(ByVal e As EventArgs)
MyBase.OnLoad(e)
Label1.Text = HttpUtility.HtmlEncode("send email to <name@gmail.com> me")
End Sub
HttpUtility。htmlcode方法将自动将字符串转换为html编码文本
您可以使用<
代替<
和>
代替>
。所以文本应该是send email to <name@gmail.com> me
您可以像下面这样使用<和>
<asp:Label runat="server" ID="lblNotification" Text="send email to
&lt;name@gmail.com&gt me;" />