bool LLenarDatos() { bool retorno = true; ValidacionLimpiar(); if (!Seguridad.ValidarNombre(NombreUsuarioTextBox.Text)) { Mensajes.ShowToastr(this, "Error", "Nombre de Usuario Invalido", "Error"); NombreUsuarioDiv.Attributes.Add("class", " col-md-8 has-error "); retorno = false; } if (retorno) { Usuario.NombreUsuario = NombreUsuarioTextBox.Text; } if (NombreUsuarioTextBox.Text.Length > 0) { if (Usuario.Comprobar()) { Mensajes.ShowToastr(this.Page, "Ya existe ese Usuario Eliga otro", "Atencion", "Error"); NombreUsuarioTextBox.Text = ""; } } if (ContrasenaTextBox.Text.Length < 6) { Mensajes.ShowToastr(this, "Error", "Contraseña Invalido Mayor que 6", "Error"); NombreDiv.Attributes.Add("class", " col-md-8 has-error "); retorno = false; } if (retorno) { Usuario.Contrasena = ContrasenaTextBox.Text; } if (!Seguridad.ValidarNombre(NombreTextBox.Text)) { Mensajes.ShowToastr(this, "Error", "Nombre Invalido", "Error"); ContrasenaDiv.Attributes.Add("class", " col-md-8 has-error "); retorno = false; } if (retorno) { Usuario.Nombre = NombreTextBox.Text; } if (!Seguridad.ValidarNombre(ApellidoTextBox.Text)) { Mensajes.ShowToastr(this, "Error", "Apellido Invalido", "Error"); ApellidoDiv.Attributes.Add("class", " col-md-8 has-error "); retorno = false; } if (retorno) { Usuario.Apellido = ApellidoTextBox.Text; } if (!Seguridad.ValidarEmail(EmailTextBox.Text)) { Mensajes.ShowToastr(this, "Error", "Email Invalido", "Error"); EmailDiv.Attributes.Add("class", " col-md-8 has-error "); retorno = false; } if (retorno) { Usuario.Email = EmailTextBox.Text; } if (!Seguridad.ValidarTelefono(TelefonoTextBox.Text)) { Mensajes.ShowToastr(this, "Error", "Telefono Invalido", "Error"); TelefonoDiv.Attributes.Add("class", " col-md-8 has-error "); retorno = false; } if (retorno) { Usuario.Telefono = TelefonoTextBox.Text; } if (FechaNacimientoTextBox.Text.Length == 0) { Mensajes.ShowToastr(this, "Error", "Fecha Invalido", "Error"); TelefonoDiv.Attributes.Add("class", " col-md-8 has-error "); retorno = false; } if (retorno) { Usuario.FechaNacimiento = Seguridad.ValidarDateTime(FechaNacimientoTextBox.Text); } Usuario.TipoUsuarioId = Seguridad.ValidarEntero(TipoUsuarioDropDownList.SelectedValue); return(retorno); }