コード例 #1
0
ファイル: ConsultarBanco.aspx.cs プロジェクト: Hennz/uricao
        protected void llenarComboBoxDeBancos()
        {
            LogicaBanco bancos = new LogicaBanco();

            this.comboBoxBanco.DataSource = bancos.EnlistaBancos();
            this.comboBoxBanco.DataBind();
        }
コード例 #2
0
ファイル: AgregarBanco.aspx.cs プロジェクト: Hennz/uricao
        protected void llenarComboBoxDeBancos()
        {
            LogicaBanco bancos = new LogicaBanco();

            this.DropDownListBancos.DataSource = bancos.EnlistaBancos();
            this.DropDownListBancos.DataBind();
            this.DropDownListBancos.Items.Add("Otro");
        }