dropdownlist 绑定方法

Posted BinBinGo

tags:

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

1 this.ddlUnit.SelectedValue = id; //注意大小写,如果选中失败会显示默认值.
2  ListItem item=ddlUnit.Items.FindByValue(id);
                    if(item != null)
                    {
                    item.Selected = true;
                    }
3   int index = this.ddlUnit.Items.IndexOf(this.ddlUnit.Items.FindByValue(id));
                    this.ddlUnit.SelectedIndex = index;



 this.ddlUnit.ClearSelection();

 

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

dropdownlist 绑定方法

在 MVC 4 中将枚举绑定到 DropDownList? [复制]

Repeater中 DropDownList如何绑定数据

DropDownList 绑定Access数据库 表名Stu,绑定到nam列。

如何绑定 DropDownList 的选定值

IT轮子系列——DropDownList 的绑定