Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/12/2010, 07:51
Avatar de dadabit
dadabit
 
Fecha de Ingreso: febrero-2009
Ubicación: Coahuila, México
Mensajes: 145
Antigüedad: 15 años, 9 meses
Puntos: 1
Respuesta: RegularExpressionValidator en fichero aspx.cs

Puedes usar la clase Regex, te anexo un ejemplo
Código C++:
Ver original
  1. public static bool IsEmail(string email)
  2.     {
  3.         string expresion = "\\w+([-+.']\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*";
  4.        
  5.         if (Regex.IsMatch(email, expresion))
  6.         {
  7.             return (Regex.Replace(email, expresion, String.Empty).Length == 0);
  8.         }
  9.         else
  10.         {
  11.             return false;
  12.         }
  13.     }