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 like
Code:
\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
That seems to work just fine, but it does not take into account when the email address is blank.

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