RadioButton..::.GroupName 属性

      使用 GroupName 属性指定一组单选按钮,以创建一组互相排斥的控件。当只能从可用选项列表中选择一项时,可使用 GroupName 属性。它的使用效果如同RadioButtonList实现单选效果。设置该属性后,每次只能从指定的组中选择一个 RadioButton。

 

      对比两种方法:

 

      一      在前台,设置两个RadioButton,如下:

     <asp:RadioButton ID="Radio1" runat="server" Checked="True" GroupName="fxtyp" Text="aa"  />&nbsp;
     <asp:RadioButton ID="Radio2" runat="server" GroupName="fxtyp" Text="bb"  />

 

      在后台判断具体哪个被选中时写法:if(Radio1.checked)

 

      二      在前台,设置一个RadioButtonList,如下:

     <asp:RadioButtonList ID="fds" runat="server">
        <asp:ListItem Text="fds1"></asp:ListItem>
        <asp:ListItem Text="fds2"></asp:ListItem>
        <asp:ListItem Text="fds3"></asp:ListItem>
        <asp:ListItem Text="fds4"></asp:ListItem>
    </asp:RadioButtonList>   

 

      在后台判断具体哪个被选中时写法:if(fds.SelectedValue=="fds1")

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值