在ASP.NET中,要設(shè)置RadioButtonList的默認(rèn)選中項,可以使用以下方法:
SelectedValue
屬性:<asp:RadioButtonList ID="RadioButtonList1" runat="server" SelectedValue="2">
<asp:ListItem Value="1">選項1</asp:ListItem>
<asp:ListItem Value="2">選項2</asp:ListItem>
<asp:ListItem Value="3">選項3</asp:ListItem>
</asp:RadioButtonList>
在這個例子中,SelectedValue
屬性被設(shè)置為"2",因此默認(rèn)選中的項是"選項2"。
SelectedValue
屬性:protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
RadioButtonList1.SelectedValue = "2";
}
}
在這個例子中,我們在Page_Load
事件處理程序中設(shè)置SelectedValue
屬性。請注意,我們只在非回發(fā)請求(!Page.IsPostBack
)時設(shè)置該屬性,以避免在用戶提交表單后重置選中項。
通過以上任一方法,您都可以設(shè)置RadioButtonList的默認(rèn)選中項。