博客园 首页 联系 订阅 管理

<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;
            }

 

posted on 2011-10-27 16:43  $蔷  阅读(138)  评论(0)    收藏  举报