当前位置导航:炫浪网>>网络学院>>网页制作>>ASP.NET教程

ASP.NET DropDownList控件的使用

  1. 数据绑定

  代码

  this.DropDownList1.DataSource = CategoryManager.getCategories();

  DropDownList1.DataValueField = "id";//用来设置下拉列表选中的 Value 值

  DropDownList1.DataTextField = "name";//为下拉列表选项显示的值

  DropDownList1.DataBind();

  2.读取数据

  int categoryId = int.Parse(this.DropDownList1.SelectedItem.Value);//获取下拉列表中选中的值

相关内容
赞助商链接