本次範例主要是解決
CheckBoxList這樣的List控制項在引發SelectedIndexChanged事件時本身不能直接得到當前的運算Item
以及是哪種操作類型選取? 還是取消選取?
-----------
範例程式碼如下:
1protected void Page_Load(object sender, EventArgs e)
2 {
3 if (!IsPostBack)
4 {
5 //綁定CheckBoxList操作
6 this.hidtxt_CheckBoxSelectValue.Value = "";//第一次綁定完CheckBoxList
7 }
8 }
9
10 protected void CheckBoxList1_SelectedIndexChanged(object sender, EventArgs e)
11 {
12 //hidtxt_CheckBoxSelectValue 儲存的是上次的點選值
13 //如果上次是Page_Load 則hidtxt_CheckBoxSelectValue為空
14 string sOld = this.hidtxt_CheckBoxSelectValue.Value.Trim();
15
16 for (int i = 0; i < CheckBoxList1.Items.Count; i++)
17 {
18 //第一種情況
19 //原來沒有選中當前卻選中
20 //則本次點選操作是:選取且點選的是這一Item
21 if (CheckBoxList1.Items[i].Selected)
22 {
23 if (!sOld.Contains(CheckBoxList1.Items[i].Value.Trim() + ","))
24 {
25 //進行相關處理
26 Response.Write("本次是選取操作,操作的CheckBox的Text值為" + CheckBoxList1.Items[i].Text + "其Value值為" + CheckBoxList1.Items[i].Value);
27 i = CheckBoxList1.Items.Count ;
28 }
29 }
30 else
31 {
32 //第二種情況
33 //原來有選中目前卻沒選中
34 //則本次點擊操作是:取消選取且點選的是這一Item
35 if (sOld.Contains(CheckBoxList1.Items[i].Value.Trim() + ","))
36 {
37 //進行相關處理
38 Response.Write("本次是取消選取操作,操作的CheckBox的Text值為" + CheckBoxList1.Items[i].Text + "其Value值為" + CheckBoxList1.Items[i].Value);
39 i = CheckBoxList1.Items.Count;
40 }
41 }
42 }
43
44 //儲存這次的所有選取的值
45 string sNew = "";
46 foreach (ListItem item in CheckBoxList1.Items)
47 {
48 if (item.Selected)
49 sNew += " " + item.Value.Trim() + ",";
50 }
51 this.hidtxt_CheckBoxSelectValue.Value = sNew;//為下次的比較做準備
52 }
http://www.cnblogs.com/freeliver54/archive/2007/01/11/617988.html