Originally posted by brutis2ka13
Thank you, your example helped out alot. Everything works well in IE6.0 but not Mozilla or nutscrape. I want to use the domvalidation controls, but am having a hard time uderstanding how to get them to work. Surely their must be an easy way to validate if a field in empty or an email is correct without going through all of this>

Microsoft!
Validation controls work in IE 5+

The next release of VS.net the patch will take care of other browsers such as mozillas / netscapes.

You can validate anything, I dont know what you mean by "Going through all this"...

Regular Expression Validatior is what you need for email.

Try this:
\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*

As your validation expression for an email.

Jon