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