protected void defaultButton_Click(object sender, EventArgs e)
        {
            if (TextBoxNuevoBanco.Visible == true)
            {
                string nombreBanco = TextBoxNuevoBanco.Text.ToString();
                string numeroCuenta = TextBoxNumCuenta.Text.ToString();
                string tipoCuenta = DropDownListTipoCuenta.SelectedItem.ToString();

                LogicaBanco agregacionBanco = new LogicaBanco();
                Boolean Flag = agregacionBanco.agregarBanco(nombreBanco, numeroCuenta, tipoCuenta, 1);

                if (Flag != false)
                {
                    Exito.Visible = true;
                    llenarComboBoxDeBancos();
                }
                else
                {
                    falla.Visible = true;
                }

            }
            else
            {
                string nombreBanco = DropDownListBancos.SelectedItem.ToString();
                string numeroCuenta = TextBoxNumCuenta.Text.ToString();
                string tipoCuenta = DropDownListTipoCuenta.SelectedItem.ToString();

                LogicaBanco agregacionBanco = new LogicaBanco();
                Boolean Flag = agregacionBanco.agregarBanco(nombreBanco, numeroCuenta, tipoCuenta,2);

                if (Flag != false)
                {
                    Exito.Visible = true;
                    llenarComboBoxDeBancos();
                }
                else
                {
                    falla.Visible = true;
                }
            }
        }