ASP 百分网手机站

ASP.NET DropDownList控件的使用方法

时间:2018-04-21 08:50:01 ASP 我要投稿

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

【关于ASP.NET DropDownList控件的使用方法】相关文章:

1.关于asp.net中List的使用方法

2.通过Asp.Net的服务器控件上传文件总结

3.asp.net中将js的返回值赋控件的小例子

4.关于ASP.NET中TextBox使用Ajax控件显示日期不全的问题解决方法

5.ASP.NET简介

6.关于JavaScript substring()的使用方法

7.ASP.NET 主题配置教程

8.网站性能优化asp.net