<asp:TextBox ID="Fund9"
runat="server"
columns="4"
MaxLength="3" Value="" />
<asp:RangeValidator ControlToValidate="Fund9"
MinimumValue="100"
MaximumValue="100"
Type="Integer"
ErrorMessage="Fund 9 must be 0 or 100"
Text="Must be 100% if selected" runat="server" /></td></tr>
As you can see the validation on the above text box only allows the user to enter the number 100. I need it so the user can also enter 0 but no other options. I would appriciate some advice on this.
RegularExpressionValidatorCustomValidator.