I have this regular expression for my email address text box.
Issue is this: I need to allow @my.domain.com and it will only allow @yahoo.com etc
How can I make it allow 2 dots '.' after the @ symbol?
ValidationExpression="^([\w\.\-]+)@([\w\-]+)((\.(\w){3,3})+)$"
Go to the complete details ...