Example #1
0
        protected void btnRegistrar_Click(object sender, EventArgs e)
        {
            BL_Cliente blCliente = new BL_Cliente();
            EN_Cliente enCliente = new EN_Cliente();

            Boolean valido = true;

            if (this.txtdni != null && !String.IsNullOrEmpty(this.txtdni.Text))
            {
                enCliente.NroDocumento = this.txtdni.Text.Trim();
            }
            else
            {
                valido = false;
            }
            if (this.txtNombres != null && !String.IsNullOrEmpty(this.txtNombres.Text))
            {
                enCliente.Nombres = this.txtNombres.Text.Trim();
            }
            if (this.txtApellidos != null && !String.IsNullOrEmpty(this.txtApellidos.Text))
            {
                enCliente.Apellidos = this.txtApellidos.Text.Trim();
            }
            if (this.txtEmail != null && !String.IsNullOrEmpty(this.txtEmail.Text))
            {
                enCliente.Email = this.txtEmail.Text.Trim();
            }
            if (this.txtPassword != null && !String.IsNullOrEmpty(this.txtPassword.Text))
            {
                enCliente.Contrasena = this.txtPassword.Text.Trim();
            }

            if (!valido)
            {
                String textError = "Datos Incompletos";
                Response.Write("<script> alert('" + textError + "') </script>");
            }
            else
            {
                String textError = blCliente.BL_validaExistenciaUsuario(enCliente);
                if (!String.IsNullOrEmpty(textError))
                {
                    Response.Write("<script> alert('" + textError + "') </script>");
                }
                else
                {
                    //Captcha1.ValidateCaptcha(txtCaptcha.Text.Trim());

                    if (validaCaptcha)
                    {
                        blCliente.BL_registrarUsuario(enCliente);
                        textError = "Usuario registrado satisfactoriamente";

                        Response.Write("<script> alert('" + textError + "') </script>");
                        LimpiarCampos();
                    }
                    else
                    {
                    }
                    //else {
                    //    textError = "Texto Aleatorio Incorrecto.";
                    //    Response.Write("<script> alert('" + textError + "') </script>");
                    //}
                }
            }
        }