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;" />