protected void btnAceptar_Click(object sender, EventArgs e)
        {
            string correo = txtCorreo.Text;
            string password = txtContrasena.Text;

            ClienteBE clientebe = new ClienteBE();
            Cliente cliente = clientebe.obtieneDniNombresCliente(correo, password);
            if (cliente != null)
            {
                lblResultado.ForeColor = System.Drawing.Color.Blue;
                lblResultado.Text = "Bienvenido ... ";
                Response.AppendHeader("REFRESH", "2;URL=" + "Catalogo.aspx");

                Label dniGlobal = (Label)Master.FindControl("lblDniClienteGlobal");
                Label NombresGlobal = (Label)Master.FindControl("lblNombresClienteGlobal");

                dniGlobal.Text = cliente.dni;
                NombresGlobal.Text = cliente.nombres;
            }
            else
            {
                txtCorreo.Text = "";
                txtContrasena.Text = "";
                lblResultado.ForeColor = System.Drawing.Color.Red;
                lblResultado.Text = "Usuario o ContraseƱa Erronea";
            }
        }