读取下拉框的值
下拉框 我是绑定到 数据库中一个表中 item_no 字段
选择 下拉框中的值 然后 按钮 触发事件 将 选中的值 写入到 LABLE中
SqlDataReader read1 = SqlHelper.ExecuteReader(common.GetConnStr(), CommandType.Text, "select top 20 * from item ", null); DropDownList1.DataSource = read1; DropDownList1.DataTextField = "item_no"; DropDownList1.DataBind(); protected void Button1_Click(object sender, EventArgs e) { this.Label1.Text = DropDownList1.SelectedValue.ToString(); }