dropdownlist 不能显示数据怎么回事?
我的下拉列表与数据库绑定后运行时,下拉列表什么也不显示是怎么回事啊?数据库中有数据,而且没有运行是不提示错误信息。 private void Page_Load(object sender, System.EventArgs e)
{
if(!IsPostBack)
{
SqlConnection con=dbcon.createConnection();
con.Open();
SqlCommand cmd=new SqlCommand("select * from power",con);
SqlDataReader sdr=cmd.ExecuteReader();
this.DropDownList1.DataSource=sdr;
this.DropDownList1.DataTextField="powername";
this.DropDownList1.DataValueField="powerid";
this.DropDownList1.DataBind();
}
}