Regular Expression Validator
-
Hi I have a textbox, for that i want to validate using Regular expresson validator, i should accept only, the numerics 0 to 9, after decimal only 2 digits, and also i should restrict a maximum of 7 digits like 1234567 if i use range and regular exp validator, while entering ',' both the validators are displaying error message, so please guide me o achieve all the three validations in regularexpression validator Thanks in advance
-
-
Hi I have a textbox, for that i want to validate using Regular expresson validator, i should accept only, the numerics 0 to 9, after decimal only 2 digits, and also i should restrict a maximum of 7 digits like 1234567 if i use range and regular exp validator, while entering ',' both the validators are displaying error message, so please guide me o achieve all the three validations in regularexpression validator Thanks in advance
-
What code do you wrote for this? What error it shows?
SSK.
-
Hi I have a textbox, for that i want to validate using Regular expresson validator, i should accept only, the numerics 0 to 9, after decimal only 2 digits, and also i should restrict a maximum of 7 digits like 1234567 if i use range and regular exp validator, while entering ',' both the validators are displaying error message, so please guide me o achieve all the three validations in regularexpression validator Thanks in advance
-
-
Hi I have a textbox, for that i want to validate using Regular expresson validator, i should accept only, the numerics 0 to 9, after decimal only 2 digits, and also i should restrict a maximum of 7 digits like 1234567 if i use range and regular exp validator, while entering ',' both the validators are displaying error message, so please guide me o achieve all the three validations in regularexpression validator Thanks in advance
-
Hi Nice, I have a regular exppression to check price of product: "[0-9]{1,3}(\,[0-9]{3})*(\.[0-9]+)?$|^[0-9]+(\.[0-9]+)?$" This is expression accept number such as: 1.450,45. 5.120 45,26 ... Hope that help you. vtkiet05