关于ASP.NET(DropDownList控件的使用方法)

导读 大家好,霖霖来为大家解答以上问题。关于ASP NET,DropDownList控件的使用方法很多人还不知道,现在让我们一起来看看吧!关于ASP NET Drop

大家好,霖霖来为大家解答以上问题。关于ASP.NET,DropDownList控件的使用方法很多人还不知道,现在让我们一起来看看吧!

关于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);//获取下拉列表中选中的值

本文到此结束,希望对大家有所帮助。

免责声明:本文由用户上传,如有侵权请联系删除!