So I have a register page for my app, I need to require an email address. Used the RegularExpressionValidator, choose a supplied regex for email which looks likeThat seems to work just fine, but it does not take into account when the email address is blank.Code:\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
Is there a way to modify the regex to not allow blank? Or would I need to use a RequiredFieldValidator on top of the RegularExpressionValidator?
Thanks,
Mike


Reply With Quote