I have problem about validating empty textbox
My textbox
<asp:TextBox ID="TextBox1" runat="server" MaxLength="50" Width="272px" AutoCompleteType="Disabled">
My label
<asp:Label ID="warning" runat="server" Text="you forgot about this" ForeColor="Red" Visible="false"></asp:Label>
my validation
if (TextBox1.Text == "")
{
warning.Visible = true;
}
it can validate the empty textbox but it can't validate space input
can anybody help me please?