private void txtEmail_Leave(object sender, EventArgs e) { string email = txtEmail.Text; logPersonas objlogPersonas = new logPersonas(); objlogPersonas.ValidarEmail(email); bool resultado = true;//= ObjlogPersonas.ValidarEmail(txtEmail.Text); if (String.IsNullOrWhiteSpace(txtEmail.Text)) { } else { resultado = objlogPersonas.ValidarEmail(email); } if (resultado == false) { MessageBox.Show("Ingrese un Email Válido"); txtEmail.Clear(); txtEmail.Focus(); } }
private void txtEmail_Leave(object sender, EventArgs e) { string email = txtEmail.Text; logPersonas objlogPersonas = new logPersonas(); objlogPersonas.ValidarEmail(email); bool resultado = true;//= ObjlogPersonas.ValidarEmail(txtEmail.Text); if (string.IsNullOrWhiteSpace(txtEmail.Text.Trim()) == true) { txtEmail.Style = MetroFramework.MetroColorStyle.Red; txtEmail.Focus(); lblEmail.Visible = true; lblEmail.Text = "Por favor ingrese email"; } else { resultado = objlogPersonas.ValidarEmail(email); lblEmail.Visible = false; } if (resultado == false) { MessageBox.Show("Ingrese un Email Válido"); txtEmail.Clear(); txtEmail.Focus(); } }
private bool validarEmail() { logPersonas ObjlogPersonas = new logPersonas(); bool resultado = true; if (String.IsNullOrWhiteSpace(txtEmail.Text)) { } else { resultado = ObjlogPersonas.ValidarEmail(txtEmail.Text); } return(resultado); }