我想用来防止用户在单选按钮中进行多项选择。我正在使用ListView控件来绑定asp.net中的单选按钮。
ListView设计
<asp:ListView ID="lvColorName" runat="server" GroupItemCount="2"
GroupPlaceholderID="groupPlaceHolder">
<LayoutTemplate>
<asp:PlaceHolder runat="server" ID="groupPlaceHolder"></asp:PlaceHolder>
</LayoutTemplate>
<GroupTemplate>
<asp:PlaceHolder runat="server" ID="itemPlaceHolder"></asp:PlaceHolder>
</GroupTemplate>
<GroupSeparatorTemplate>
</GroupSeparatorTemplate>
<ItemTemplate>
<asp:RadioButton ID="cbColorName" Text='<%# Eval("colorName")%>' runat="server" />
</ItemTemplate>
</asp:ListView>
我不想选择多个。虽然使用正常但发生但不在listview中......