DropDownList的常见属性
属性 | 描述 |
---|---|
AutoPostBack | 用于设置下拉框的变化,是否主动向服务器提交整个表单,默认是false即不主动提交.如果设置为true,则执行SelecetedIndexChanged事件处理方法 |
DateTextFieId | 设置列表项的可见部分文字 |
DateValueFieId | 设置列表项的值部分 |
Item | 获取控件的列表项的集合 |
SelectedIndex | 获取或设置DropDownList控件中选定项的索引 |
SelectedItem | 获取列表控件中索引最小的选定项 |
SelectedValus | 获取列表控件中选定的值,或选择列表控件中包含指定值的项 |
例:
//添加项
this.DropDownList1.Items.Insert(0,new ListItem("–请选择–"));
this.DropDownList1.Items.Add(new ListItem(“1”));
//绑定数据
this.DropDownList1.DataSource = aaBLL.Selectaa();
this.DropDownList1.DataTextField = “aa”;//列表项的可见部分文字
this.DropDownList1.DataValueField = “bb”;//列表项的值部分
this.DropDownList1.DataBind();
//指定默认选择
ListItem item = this.DropDownList1.Items.FindByValue(“1”);
item.Selected = true;