Is it possible to put Number validation in required field validator in asp.net text box?
No, a RequiredFieldValidator can only verify that the field contains something.
If you want to verify that the field only contains digits, you can use a RegularExpressionValidator with the pattern "\d+".
"\d+"