<td height="20" bgcolor="#FFFFFF"><div align="center" class="STYLE1">
<div align="center"> <%# Eval("xianshi").ToString()=="1"?"推荐":"不推荐"%></div> </div></td>
点击修改的时候:
//是否推荐
string tuijian = ds.Tables[0].Rows[0]["xianshi"].ToString();
if (tuijian == "1")
{
this.RadioButtonList1.SelectedIndex = RadioButtonList1.Items.IndexOf(RadioButtonList1.Items.FindByText("推荐"));
this.RadioButtonList1.SelectedIndex = RadioButtonList1.Items.IndexOf(RadioButtonList1.Items.FindByValue("1"));
this.RadioButtonList1.SelectedIndex = 0;
}
if (tuijian == "0")
{
this.RadioButtonList1.SelectedIndex = RadioButtonList1.Items.IndexOf(RadioButtonList1.Items.FindByText("不推荐"));
this.RadioButtonList1.SelectedIndex = RadioButtonList1.Items.IndexOf(RadioButtonList1.Items.FindByValue("0"));
this.RadioButtonList1.SelectedIndex = 1;
}
浙公网安备 33010602011771号