AI智能
改变未来

asp.net中checkboxlist的常见用法

1.给checkboxlist添加新的项:

CheckBoxList.Items.Add(“abc”);

2.删除checkboxlist的选项:(i为所删除选项在列表中的序列号)

CheckBoxList.Items.Remove(CheckBoxList.Items[i]);

3.checkboxlist中总的选项数:

int count=CheckBoxList1.Items.Count;

4.获取checkboxlist中某个选项的值:

CheckBoxList1.Items[i].Value

另外,
ArrayList数组长度用Count,ArrayList数组类型需要ToString才可以转化为string类型。
string[]数组长度用Length。

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » asp.net中checkboxlist的常见用法