2

在 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. 谢谢。

4

3 回答 3

4

使用以下代码:

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 编码文本

于 2013-01-07T07:15:08.390 回答
2

您可以使用&lt;代替<&gt;代替>。所以你的文字应该是send email to &lt;name@gmail.com&gt; me

于 2013-01-07T07:12:35.647 回答
1

您可以像下面一样使用 < 和 >

<asp:Label runat="server" ID="lblNotification" Text="send email to 
&amp;lt;name@gmail.com&amp;gt me;" />
于 2013-01-07T07:19:37.303 回答