I am using the follwoing regular expression for email validation
@"^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$"
Bit it accepts []name@gmail.com[][] as a valid email.whats the pattern i should use? Is it possible to check that at client side?