asp.net listview中的单选按钮选择

时间:2015-07-29 10:10:32

标签: asp.net .net listview c#-4.0 radio-button

我想用来防止用户在单选按钮中进行多项选择。我正在使用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>

Out Put enter image description here

我不想选择多个。虽然使用正常但发生但不在listview中......

0 个答案:

没有答案