要設置RadioButtonList的默認選項,您可以使用SelectedIndex
屬性。首先,確保您已經為RadioButtonList中的每個RadioButton設置了Value
屬性,然后通過將SelectedIndex
屬性設置為對應RadioButton的索引來選擇默認選項。
以下是一個簡單的示例:
<asp:RadioButtonList ID="RadioButtonList1" runat="server">
<asp:ListItem Text="Option 1" Value="1" />
<asp:ListItem Text="Option 2" Value="2" />
<asp:ListItem Text="Option 3" Value="3" />
</asp:RadioButtonList>
<asp:Button ID="btnSubmit" runat="server" OnClick="btnSubmit_Click" Text="Submit" />
Page_Load
事件處理程序中)設置默認選項:protected void Page_Load(object sender, EventArgs e)
{
// 設置默認選項,例如,選擇"Option 2"
RadioButtonList1.SelectedIndex = 1;
}
在這個例子中,當頁面加載時,"Option 2"將被設置為默認選項。當用戶點擊"Submit"按鈕時,服務器端代碼將處理所選選項。