我對驗證空文本框問題校驗空值
我的文本框
<asp:TextBox ID="TextBox1" runat="server" MaxLength="50" Width="272px" AutoCompleteType="Disabled">
我的標籤
<asp:Label ID="warning" runat="server" Text="you forgot about this" ForeColor="Red" Visible="false"></asp:Label>
我的驗證
if (TextBox1.Text == "")
{
warning.Visible = true;
}
它可以驗證空的文本框,但它不能驗證空間輸入
有人可以幫我嗎?
爲什麼你沒有使用ASP.NET驗證控件? – 2014-10-29 12:32:15