Lato server, un esempietto di codice da un link di quello stesso thread su citato:

codice:
using System.Text.RegularExpressions;

Regex emailregex = new Regex("(?<user>[^@]+)@(?<host>.+)");
String s = tuaTextbox.Text.Trim();

Match m = emailregex.Match(s);
if ( m.Success ) {
        // scrivi nel db
} else {
        Response.Write(s + " is not a valid email address");
}