web-dev-qa-db-ja.com

asp.netの背後にあるコードでデフォルトでチェックされているチェックボックスリスト項目

私のページにはCheckBoxListコントロールがあり、7つのアイテムがあります。 Page_loadコードビハインドでチェックした7つの項目を設定したいと思います。

私のページ:

<asp:CheckBoxList ID="WeeklyCondition" runat="server">
    <asp:ListItem Value="1">Sat</asp:ListItem>
    <asp:ListItem Value="2">Sun</asp:ListItem>
    <asp:ListItem Value="3">Mon</asp:ListItem>
    <asp:ListItem Value="4">Tue</asp:ListItem>
    <asp:ListItem Value="5">Wed</asp:ListItem>
    <asp:ListItem Value="6">Thu</asp:ListItem>
    <asp:ListItem Value="7">Fri</asp:ListItem>

</asp:CheckBoxList>
8
Amir Abdollahi

何らかの条件でそれらのいくつかをチェックしたい場合は、次のようなものを使用できます:

protected void Page_Load(object sender, EventArgs e)
{
    for (int i = 0; i < CheckBoxList1.Items.Count; i++)
    {
        if(someCondition)
           CheckBoxList1.Items[i].Selected = true;
    }
}

から ここ

6
Majid

ループを使用して、CheckBoxListのitemsコレクションを介してiterateにし、Selectedプロパティを変更できます。

foreach (ListItem item in WeeklyCondition.Items) 
    item.Selected = true;
10
Adil

チェックボックスリストの項目をデフォルトでチェックされているように設定するにはどうすればよいですか

最初の方法:

<asp:CheckBoxList runat="server" ID="CheckBoxList1">
    <asp:ListItem Selected="True">Item1</asp:ListItem>
    <asp:ListItem Selected="True">Item2</asp:ListItem>
    <asp:ListItem Selected="True">Item3</asp:ListItem>
    <asp:ListItem Selected="True">Item4</asp:ListItem>
    <asp:ListItem Selected="True">Item5</asp:ListItem>
</asp:CheckBoxList>

2番目の方法:

ページファイル:

<asp:CheckBoxList runat="server" ID="CheckBoxList">
    <asp:ListItem>Item1</asp:ListItem>
    <asp:ListItem>Item2</asp:ListItem>
    <asp:ListItem>Item3</asp:ListItem>
    <asp:ListItem>Item4</asp:ListItem>
    <asp:ListItem>Item5</asp:ListItem>
</asp:CheckBoxList>

CodeBehind:

protected void Page_Load(object sender, EventArgs e)
{
    for (int i = 0; i < CheckBoxList.Items.Count; i++)
    {
        CheckBoxList.Items[i].Selected = true;
    }
}
3
Rohit Mane