private void cargar_DropDownList_BANCOS()
    {
        DropDownList_BANCOS.Items.Clear();

        financiera _bancos = new financiera(Session["idEmpresa"].ToString(), Session["USU_LOG"].ToString());
        DataTable tablaBancos = _bancos.ObtenerBancos();

        ListItem item = new ListItem("Seleccione un Banco...", "");
        DropDownList_BANCOS.Items.Add(item);

        foreach (DataRow fila in tablaBancos.Rows)
        {
            item = new ListItem(fila["NOMBRE"].ToString(), fila["ID"].ToString());
            DropDownList_BANCOS.Items.Add(item);
        }

        DropDownList_BANCOS.DataBind();
    }
    private void cargar_DropDownList_CUENTAS(Int32 _banco)
    {
        DropDownList_CUENTAS.Items.Clear();

        financiera _cuentas = new financiera(Session["idEmpresa"].ToString(), Session["USU_LOG"].ToString());
        DataTable tablaCuentas = _cuentas.ObtenerCuentasPorBanco(_banco);

        ListItem item = new ListItem("Seleccione una Cuenta...", "");
        DropDownList_CUENTAS.Items.Add(item);

        foreach (DataRow fila in tablaCuentas.Rows)
        {
            item = new ListItem(fila["ALIAS"].ToString(), fila["ID_CUENTA"].ToString());
            DropDownList_CUENTAS.Items.Add(item);
        }

        DropDownList_CUENTAS.DataBind();
    }