我有一个创建CheckBoxList
的按钮。 CheckBoxList
中的项目是根据用户当前的通知订阅选择的。我正在存储所选项目的真值或假值。
用户通过选中或取消选中CheckBoxList
中的框来更改订阅后,他们会点击另一个按钮来更新其通知订阅。我需要将Viewstate["PREV"]
与回发时更改的选择进行比较,并根据更改运行一些函数。
ArrayList list = new ArrayList();
for (int i = 0; i < checkBoxList1.Items.Count; i++)
{
list.Add(checkBoxList1.Items[i].Selected.ToString());
}
ViewState["PREV"] = list;
即使我看不到Response.Write
的值,但在调试中添加监视时,ViewState的值是正确的。
我遇到的问题是如何进行下一步的比较。这就是我想要实现的目标:
for (int i = 0; i < checkBoxList1.Items.Count; i++)
{
//if checkbox state goes from false to true, subscribe to topic
//mySubscribeMethod
//else if checkbox state goes from true to false, unsubscribe to topic
//myUnsubscribeMethod
//else if checkbox state is unchanged, do nothing
}
答案 0 :(得分:0)
您可以尝试这样的事情
ArrayList list = ViewState["PREV"] as ArrayList;
for (int i = 0; i < checkBoxList1.Items.Count; i++)
{
if (checkBoxList1.Items[i].Selected == true && Convert.ToBoolean(list[i]) == false)
{
// Subscribe Method
}
if (checkBoxList1.Items[i].Selected == false && Convert.ToBoolean(list[i]) == true)
{
// Unsubscribe Method
}
else
{
// Continue to loop
}
}