我有一个ListBox(with selectionMode=multiple)
并将选定的值存储在 cookie 中。当用户回来时,我想为他提供再次选择的所有选项。
到目前为止我所做的:我获取所有选定的值并将索引“,”存储在cookie中的字符串中。
当用户回来时,我拆分字符串并循环遍历所有 ListItems 以再次选择每一个!
但有:
foreach (string str in selectedStr)
{
listbox1.SelectedIndex = Int32.Parse(str);
}
我只得到一个(随机?)选定值。
谁能帮我重新选择所有选定的值?也许甚至是更好的解决方案?