我将所有项目存储CheckBoxList
在Session中并检索相同的项目并添加到另一个或相同的项目中CheckBoxList
。
CheckBoxList
这是我在 button1_click 上的 Session 中存储项目的代码:
Session.Add("AllItems", CheckBoxList1.Items);
这是我从 Session 中检索值并填写CheckBoxList
button2_click 的代码:
if ((Session["AllItems"]) != null)
{
CheckBoxList1.Items.Add(Session["AllItems1"].ToString());
}
但这会导致其中一项CheckBoxList
的值为:“System.Web.UI.WebControls.ListItemCollection”
有人可以帮我解决这个问题。先感谢您。