ASP.NET DropDownList控件的使用方法
作者:
ASP.NET DropDownList控件的使用方法,学习asp.net的朋友没用过这个控件的朋友可以参考下。
1. 数据绑定
this.DropDownList1.DataSource = CategoryManager.getCategories();
DropDownList1.DataValueField = "id";//用来设置下拉列表选中的 Value 值
DropDownList1.DataTextField = "name";//为下拉列表选项显示的值
DropDownList1.DataBind();
2.读取数据
int categoryId = int.Parse(this.DropDownList1.SelectedItem.Value);//获取下拉列表中选中的值
复制代码 代码如下:
this.DropDownList1.DataSource = CategoryManager.getCategories();
DropDownList1.DataValueField = "id";//用来设置下拉列表选中的 Value 值
DropDownList1.DataTextField = "name";//为下拉列表选项显示的值
DropDownList1.DataBind();
2.读取数据
复制代码 代码如下:
int categoryId = int.Parse(this.DropDownList1.SelectedItem.Value);//获取下拉列表中选中的值
您可能感兴趣的文章:
- asp.net 读取xml文件里面的内容,绑定到dropdownlist中
- asp.net使用DataSet的ReadXml读取XML文件及Stream流的方法
- ASP.NET读取XML文件4种方法分析
- Javascript+XMLHttpRequest+asp.net无刷新读取数据库数据
- ASP.NET中读取XML文件信息的4种方法与示例代码
- ASP.NET MVC DropDownList数据绑定及使用详解
- ASP.NET MVC中为DropDownListFor设置选中项的方法
- ASP.NET Ajax级联DropDownList实现代码
- asp.net DropDownList自定义控件,让你的分类更清晰
- (asp.net c#)DropDownList绑定后显示对应的项的两种方法
- ASP.NET笔记之 ListView 与 DropDownList的使用
- asp.net实现XML文件读取数据绑定到DropDownList的方法