asp.net 绑定DropDownList

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net 绑定DropDownList相关的知识,希望对你有一定的参考价值。

  protected void BindBankAccount()
    {
        DropDownList_bank.Items.Clear();
        ListItem initItem = new ListItem("--请选择--", "-1");
        DataTable dt = Lms.DAL.BankAccount.GetList(" and status=1");
        DropDownList_bank.Items.Add(initItem);

        if (dt != null && dt.Rows.Count > 0)
        {
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                ListItem item = new ListItem();
                item.Value = dt.Rows[i]["id"].ToString();
                item.Text = dt.Rows[i]["bank"].ToString() + "" + dt.Rows[i]["accountno"].ToString();
                DropDownList_bank.Items.Add(item);
            }
        }
    }

 

以上是关于asp.net 绑定DropDownList的主要内容,如果未能解决你的问题,请参考以下文章

ASP.NET DropDownList 未在 SelectedIndexChanged 上绑定 SQL

asp.net中用datatable给dropdownlist绑定数据

asp.net 绑定DropDownList

来自Web服务的DropDownList绑定在asp.net中编辑时不传递数据源

在 Kendo Scheduler 自定义模板中绑定 DropDownList(ASP.NET MVC Wrapper 版本)

asp.net怎样把数据库中字段的值绑定到dropdownlist上,