I am trying to make regular expression that allow only numbers and must be mandatory. no blank field or white space allow using asp regular expression validater with C#. i tried this ValidationExpression="^[/d]*+$". this is working for number only. blank field accepted by this expression.
Thanks