在 VB.NET 标签中,
lblNotification.Text = send email to <name@gmail.com> me
O/PI 得到了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.HtmlEncode方法会自动将您的字符串转换为 html 编码文本
您可以使用<
代替<
和>
代替>
。所以你的文字应该是send email to <name@gmail.com> me
您可以像下面一样使用 < 和 >
<asp:Label runat="server" ID="lblNotification" Text="send email to
&lt;name@gmail.com&gt me;" />