Thanks SonuKapoor, but [0-9]+ still allows spaces. In fact, I've been trying this all moring. Am I missing something. I would have expected the Range Validor to work, but it doesn't. Can anyone help me here?
I just tried again. If you enter a number then a space it works, but if you just input a space, it does not work. This is not bad, I can work with it. You're right on time again SonuKapoor, thanks again!
TaffyLewis
Member
195 Points
90 Posts
Regular Expression Validator - Numbers only no letters no spaces
Jun 29, 2005 02:28 PM|LINK
http://forums.asp.net/644385/ShowPost.aspx
But, this examples stills allows spaces. Is there a formula that will allow numbers only?
SonuKapoor
Star
13757 Points
2655 Posts
MVP
Re: Regular Expression Validator - Numbers only no letters no spaces
Jun 29, 2005 02:31 PM|LINK
[0-9]+
ASP.NET News and Articles For Lazy Developers |Ajax Data Controls Forum
TaffyLewis
Member
195 Points
90 Posts
Re: Regular Expression Validator - Numbers only no letters no spaces
Jun 29, 2005 02:45 PM|LINK
SonuKapoor
Star
13757 Points
2655 Posts
MVP
Re: Regular Expression Validator - Numbers only no letters no spaces
Jun 29, 2005 02:58 PM|LINK
ASP.NET News and Articles For Lazy Developers |Ajax Data Controls Forum
TaffyLewis
Member
195 Points
90 Posts
Re: Regular Expression Validator - Numbers only no letters no spaces
Jun 29, 2005 03:46 PM|LINK
Taffy
SonuKapoor
Star
13757 Points
2655 Posts
MVP
Re: Regular Expression Validator - Numbers only no letters no spaces
Jun 29, 2005 03:57 PM|LINK
ASP.NET News and Articles For Lazy Developers |Ajax Data Controls Forum
Garbin
Contributor
7428 Points
1507 Posts
ASPInsiders
Re: Regular Expression Validator - Numbers only no letters no spaces
Jun 29, 2005 05:31 PM|LINK
try this: ^[0-9]+$
TaffyLewis
Member
195 Points
90 Posts
Re: Regular Expression Validator - Numbers only no letters no spaces
Jun 29, 2005 06:08 PM|LINK
just_poss
Member
272 Points
54 Posts
Re: Regular Expression Validator - Numbers only no letters no spaces
Jun 29, 2005 07:04 PM|LINK
This
\d+
will work and it wont allow spaces before or after the digits but it wont if there are only spaces so you need RequiredFieldValidator too
Regards,
sujithmysore
Member
75 Points
44 Posts
Re: Regular Expression Validator - Numbers only no letters no spaces
Jun 07, 2008 08:41 AM|LINK
Thank You, It worker for me[:)]