C
Cirene
I have a rangevalidator as follows...
<asp:RangeValidator ID="RangeValidator4" runat="server"
ControlToValidate="InvoicePriceTextBox"
ErrorMessage="0-999999"
MaximumValue="999999" MinimumValue="0"
Type="Currency"></asp:RangeValidator>
Why can't the user type in "$28.84"? Doesn't "Currency" allow for the
dollar sign?
<asp:RangeValidator ID="RangeValidator4" runat="server"
ControlToValidate="InvoicePriceTextBox"
ErrorMessage="0-999999"
MaximumValue="999999" MinimumValue="0"
Type="Currency"></asp:RangeValidator>
Why can't the user type in "$28.84"? Doesn't "Currency" allow for the
dollar sign?