Number validation in required field validator

后端 未结 7 1430
挽巷
挽巷 2021-02-05 08:08

Is it possible to put Number validation in required field validator in asp.net text box?

7条回答
  •  后悔当初
    2021-02-05 08:25

    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+".

提交回复
热议问题