永发信息网

.net RadioButtonList赋值

答案:2  悬赏:0  手机版
解决时间 2021-08-11 15:49
  • 提问者网友:送舟行
  • 2021-08-11 11:23

Repeater中的RadioButtonList如何进行赋值,使之选择某一项。比如数据库中数据为“关闭”,使他选择“关闭”这一项。能否在前台页面Repeater中使用Eval(“”)进行?

<asp:RadioButtonList ID="RadioChanStatus" runat="server" RepeatDirection="Horizontal" >
                            <asp:ListItem>开放</asp:ListItem>
                            <asp:ListItem>关闭</asp:ListItem>
                            <asp:ListItem>隐藏</asp:ListItem>
                        </asp:RadioButtonList>

最佳答案
  • 五星知识达人网友:等灯
  • 2021-08-11 12:20
repeater itemdatabound事件 搞定
全部回答
  • 1楼网友:不甚了了
  • 2021-08-11 12:39
protected void Button1_Click ( object sender , EventArgs e ) { if ( this.TextBox1.Text == "1" ) { this.myRadio.SelectedIndex = 1; } else { this.myRadio.SelectedIndex = -1; } }
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯