RadioButtonList控件是ASP.NET Web Forms中的一個(gè)控件,用于顯示一組單選按鈕。它通常用于用戶選擇一個(gè)選項(xiàng)的場景,比如選擇性別、選擇單選題的答案等。
使用RadioButtonList控件的步驟如下:
<asp:RadioButtonList ID="RadioButtonList1" runat="server">
<asp:ListItem Text="選項(xiàng)1" Value="1"></asp:ListItem>
<asp:ListItem Text="選項(xiàng)2" Value="2"></asp:ListItem>
<asp:ListItem Text="選項(xiàng)3" Value="3"></asp:ListItem>
</asp:RadioButtonList>
string selectedValue = RadioButtonList1.SelectedValue;
RadioButtonList1.Items.Add(new ListItem("選項(xiàng)4", "4"));
RadioButtonList1.Items.Add(new ListItem("選項(xiàng)5", "5"));
<asp:RadioButtonList ID="RadioButtonList1" runat="server" RepeatLayout="Flow" RepeatDirection="Vertical" CssClass="myRadioButtonList">
<asp:ListItem Text="選項(xiàng)1" Value="1"></asp:ListItem>
<asp:ListItem Text="選項(xiàng)2" Value="2"></asp:ListItem>
<asp:ListItem Text="選項(xiàng)3" Value="3"></asp:ListItem>
</asp:RadioButtonList>
上述代碼將RadioButtonList的布局設(shè)置為流動(dòng)布局,選項(xiàng)排列方向?yàn)榇怪?,并為控件添加了自定義的CSS樣式。
通過以上步驟,可以在ASP.NET頁面中使用RadioButtonList控件完成單選功能的實(shí)現(xiàn)。