溫馨提示×

radiobuttonlist的默認(rèn)選中項如何設(shè)置

小樊
90
2024-09-02 15:03:25
欄目: 編程語言

在ASP.NET中,要設(shè)置RadioButtonList的默認(rèn)選中項,可以使用以下方法:

  1. 在ASP.NET標(biāo)記中設(shè)置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"。

  1. 在服務(wù)器端代碼(如C#或VB.NET)中設(shè)置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)選中項。

0