0

フォームにRadTextBoxコントロールがあり、メソッドの 1 つで、コントロールのテキストを次のように設定します。

SecondHalfTB.EmptyMessage = sharedMailbox.MailboxEmail.Replace("CAAS_", string.Empty)
                                                 .Replace("@caas.gov.sg", string.Empty);

<td class="ms-formbody">
    CAAS_<telerik:RadTextBox ID="SecondHalfTB" runat="server" MaxLength="255">
    </telerik:RadTextBox>
    @caas.gov.sg
    <div>
        <asp:Label ID="lbSecondHalfTB" runat="server" CssClass="WarningMessage"></asp:Label>
    </div>
</td>

ここに画像の説明を入力


テキスト ボックスに値を入力しなかった場合、次のステートメントは空の文字列を返しますか?

string newEmail = SecondHalfTB.Text;
if (newEmail == string.Empty)
{
    newEmail = SecondHalfTB.DisplayText;
}
4

1 に答える 1