只有当文本框为空时,我才尝试显示空值。在我的情况下,即使我在文本框中输入,它也不会检测为空值。请帮我解决我的错误。
protected void AnyTextBox_TextChanged(object sender, EventArgs e)
{
if ((string.IsNullOrEmpty(TextBox1.Text)))
{
TBResult1.Text = "N/A";
}
else
{
TBResult1.Text = TextBox1.ToString();
}
<asp:TextBox ID="TextBox1" OnTextChanged="AnyTextBox_TextChanged" AutoPostBack="true" runat="server"></asp:TextBox>
<asp:TextBox ID="TBResult1" OnTextChanged="AnyTextBox_TextChanged" AutoPostBack="true" runat="server"></asp:TextBox>