ASP.NET DropDownList控件的使用方法
ASP.NET DropDownList控件的使用方法
发布时间:2016-12-29 来源:查字典编辑
摘要:1.数据绑定复制代码代码如下:this.DropDownList1.DataSource=CategoryManager.getCatego...

1. 数据绑定

复制代码 代码如下:

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教程学习
热门asp.net教程学习
编程开发子分类