I am using RegularExpressionValidator to validate EmailID where ValidateExpresion is::
\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
Actually i want to validate EmailID that can also contain spaces.
example::
< [email protected] >,
I want to validate all of the above Email IDs as Valid.
Please help me
Thanks in advance
RujutaPosted Mar 26, 2010, 7:16 AM
^(([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5}){1,25})+([;.](([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5}){1,25})+)*$
it is for semi colon(;) separated mails, u can replace the ; with , for your use
Please mark it as answer if it helps you...