Guffa | Foto | Programmering

Giltig e-post-adress

Den här metoden kontrollerar ifall en sträng har rätt format för en e-post-adress.

public bool IsEmail(string email) {
   return System.Text.RegularExpressions.RegEx.IsMatch(email, "^[a-z][w.-%~]*@[w.-]+.[a-z]{2,4}$");
}

Exempel:

if (!IsEmail(fldEmail.Text)) Response.Redirect "Illegal.aspx"