我需要驗證人員的年齡,並且該字段應該是強制填寫的。此外,範圍應該是2-3位。一個驗證單獨工作,但數據也得到存儲,我不想。如何在c#中添加asp.net中的多個驗證碼
<asp:TextBox ID="txtAge" value="number" runat ="server" OnTextChanged="TextBox1_TextChanged"></asp:TextBox>
<asp:RangeValidator ID="RangeValidator2"
ControlToValidate="txtAge"
MinimumValue="18"
MaximumValue="80"
Type="INTEGER"
EnableClientScript="false"
Text="The date must be between 18 and 80!"
runat="server" />
請幫我解決這個問題。
顯示你已經嘗試過的情況。 – 2015-04-02 13:44:28
那麼問題是什麼?使用兩個驗證器。 RequiredFieldValidator和RangeValidator。 – 2015-04-02 13:48:19
沒有它不適合我。而且不正確的數據也被存儲在數據庫中。 – zombie 2015-04-02 13:49:34