[求助]怎么让RadioButtonList的选中项随着对应的值改变?
从数据库中读取数据COM1
RadioButtonList对应的选中的值也是COM1
从数据库中读取数据COM2
RadioButtonList对应的选中的值也是COM2
怎么实现?以前实现过,现在忘了
//RadioButtonList的绑定
//this.OnoffPort.SelectedValue = reader["ONOFFPORT"].ToString();--错误的
从数据库中读取数据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();
我不是那个意思
我的意思是 怎么让RadioButtonList中选中状态的值 和数据库中读取出来的值一样
反正是RadioButtonList 的Select 的那个值随着 从数据库读取的值一样 ,
这是一个有点小弯路的绑定,敬请高手赐教!!!