ASP.NET DropDownList控件的使用方法
时间:2022-04-14 09:42:50|栏目:.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);//获取下拉列表中选中的值
上一篇:.Net使用SuperSocket框架实现WebSocket后端
栏 目:.NET代码
下一篇:C#实现强制关闭当前程序进程
本文标题:ASP.NET DropDownList控件的使用方法
本文地址:http://www.codeinn.net/misctech/199129.html