gpt4 book ai didi

asp.net - 循环遍历复选框列表

转载 作者:行者123 更新时间:2023-12-02 17:00:06 26 4
gpt4 key购买 nike

我正在构建一个复选框列表:

<asp:CheckBoxList ID="CheckBoxes" DataTextField="Value" DataValueField="Key" runat="server"></asp:CheckBoxList>

并尝试获取所选项目的值:

List<Guid> things = new List<Guid>();
foreach (ListItem item in this.CheckBoxes.Items)
{
if (item.Selected)
things.Add(item.Value);
}
}

我收到错误

"The best overloaded method match for 'System.Collections.Generic.List.Add(System.Guid)' has some invalid arguments "

最佳答案

“事物”列表不包含 Guid 值。您应该将 item.value 转换为 Guid 值:

List<Guid> things = new List<Guid>();
foreach (ListItem item in this.CheckBoxes.Items)
{
if (item.Selected)
things.Add(new Guid(item.Value));
}

关于asp.net - 循环遍历复选框列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3260428/

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