服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - ASP.NET教程 - ASP.NET DropDownList控件的使用方法

ASP.NET DropDownList控件的使用方法

2019-09-02 09:39ASP.NET之家 ASP.NET教程

ASP.NET DropDownList控件的使用方法,学习asp.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);//获取下拉列表中选中的值 

延伸 · 阅读

精彩推荐