[求助]怎么让RadioButtonList的选中项随着对应的值改变?
从数据库中读取数据COM1
RadioButtonList对应的选中的值也是COM1
从数据库中读取数据COM2
RadioButtonList对应的选中的值也是COM2
怎么实现?以前实现过,现在忘了
//RadioButtonList的绑定
//this.OnoffPort.SelectedValue = reader["ONOFFPORT"].ToString();--错误的
//this.OnoffPort.SelectedValue = reader["ONOFFPORT"].ToString();--错误的
SqlCommand com = new SqlCommand("select * from Picture", con);//con自己写连接
SqlDataReader sdr = com.ExecuteReader();
this.RadioButtonList1.DataTextField = "title";//字段 title
this.RadioButtonList1.DataValueField = "PictureID";//字段 PictureID
RadioButtonList1.DataSource = sdr;
RadioButtonList1.DataBind();