vote up 1 vote down star

Hi,

Is it possible to use asp:RequiredFieldValidator and asp:RegularExpressionValidator for a single textbox.

Kind Regards, Geetha

flag

73% accept rate
1  
You can always try that. This, for one, will take much less time than you spend waiting for an answer on SO. Plus, I believe that a properly constructed regex will disallow empty text to be entered in a textbox, thus rendering asp:RequiredFieldValidator unneccessary. – Anton Gogolev Oct 21 at 7:26
It may not be necessary in absolute terms, but if it means you can provide more meaningful error messages to the user i.e. distinguishing in the validation text between "required but missing" and "supplied but wrong" then it may be desirable. You're absolutely right about trying being faster than asking in this case! – Murph Oct 21 at 8:47

2 Answers

vote up 1 vote down check

yes. Just put them both on your page and set their controlToValidate to the same control

link|flag
vote up 1 vote down

Yes you can, just bind both to the same TextBox/whatever control you want to validate.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.