heres an example of how to use the regular expression regulator (see attached code).
For your case, just put whatever validation you want here:
ValidationExpression="([0-
Main Topics
Browse All TopicsI need help building a validation expression that requires the textbox to have an amount equal to or greater than $10,000. I would like to be able to use it in the asp:regularexpressionvalid
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
it does not allow thosands separator. the problem with making it optional is that you have make sure it is either present at every valid place or none at all. regexes do not allow you to do that. BNF grammar does.
you can make a complicated one by combining two regexes -- one that does not allow and one that requires. let's call them A & B. you final regex would be (A)|(B). A is already defined in my previous post. I tried to write B but could not get it right. I will try again.
@DotNetChano
However, if you do use the regular expression and a user attempts to enter a comma it will not allow it. This forces the user to enter just numerics. If you have your datatype set up right on the back end, such as a datatype Money, then when the value is displayed to the screen after submission it can then show the dollar sign and commas.
Otherwise, you can use javascript or jquery to track the # of characters entered and after every 3 numerics have client side javascript enter a comma. Nonetheless, your database will not like commas so even if they are displayed to your user, prior to submission, you will have to strip them away again. That is just messy........
Business Accounts
Answer for Membership
by: BalkisBrPosted on 2009-11-05 at 10:46:48ID: 25752541
Hi,
I believe it would be better if you use a RangeValidator (or CustomValidator) to validate what you want.
You must be very creative to come up with a regex that validates the bottom limit of a value.