gpt4 book ai didi

c# - 在代码隐藏 asp.net 中默认选中的复选框列表项

转载 作者:太空狗 更新时间:2023-10-29 18:09:15 29 4
gpt4 key购买 nike

在我的页面中,我有一个 CheckBoxList 控件,上面有 7 个项目。我想在我的 Page_load codebihind 中将这 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>

最佳答案

您可以使用循环迭代 CheckBoxList 的项目集合并更改Selected 属性。

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

关于c# - 在代码隐藏 asp.net 中默认选中的复选框列表项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24978384/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com