使用 GroupName 属性指定一组单选按钮,以创建一组互相排斥的控件。当只能从可用选项列表中选择一项时,可使用 GroupName 属性。它的使用效果如同RadioButtonList实现单选效果。设置该属性后,每次只能从指定的组中选择一个 RadioButton。
对比两种方法:
一 在前台,设置两个RadioButton,如下:
<asp:RadioButton ID="Radio1" runat="server" Checked="True" GroupName="fxtyp" Text="aa" />
<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")