我想驗證TextBox
中字符串的長度。頁面上的控件定義如下:RangeValidator無法計數?
<asp:TextBox runat="server" ID="TB" />
<asp:RangeValidator runat="server" ID="RV"
MinimumValue="3" MaximumValue="20"
ControlToValidate="TB" Type="String" />
但是頁面運行時有運行發生時錯誤
的MaximumValue 20不能比MinimumValue 3
'RangeValidator'用於驗證數字的範圍,而不是在字符串的長度的範圍內。 – Oded