ASP.NET基础教程-DropDownList控件的使用

 //清除控件的内容
DropDownList.Items.Clear();
//打开数据库
con.Open();
//从数据库中提取数据
SqlCommand comm=new SqlCommand("select dept from dept",con);
//声明数据读取对象,并加载数据
SqlDataReader dr=comm.ExecuteReader();
//循环将数据添加到列表控件中
while(dr.Read ())
{
   DropDownList.Items.Add(dr.GetString (dr.GetOrdinal (“dept")));
}
//关闭数据库
con.Close();

你可能感兴趣的:(asp.net,控件,dropdownlist,休闲,基础教程)