asp.net|web|编程
一. 如何在创建一个CheckBoxList组件:
<asp:CheckBoxList runat = "server" id = C1 >
<asp:ListItem Value = 1 >第一个检查框</asp:ListItem >
<asp:ListItem Value = 2 >第二个检查框</asp:ListItem >
<asp:ListItem Value = 3 >第三个检查框</asp:ListItem >
.....
注释:在这里可以加入若干个检查框
</asp:CheckBoxList >
在ASP.NET页面中加入上面的语句,就可以产生一个名称为"C1"的CheckBoxList组件了。
二. CheckBoxList组件中经常使用到的属性:
I > .TextAlign属性:取值为:Left、Right。如果TextAlign的值为Left则CheckBoxList组件中的检查框的文字在选框的左边,同理如果TextAlign的值为Right则检查框的文字在选框的右边。
II > .Selected属性:为布尔型,判定组件中的检查框是否被选中。
III > .RepeatColumns属性:在CheckBoxList组件中有若干检查框,此属性主要是设定这些检查框到底用多少行来显示。
IV > .RepeatDirection属性:此属性的值可为:Vertical、Horizontal。当设定了RepeatColumns属性后,设定此属性是如何排列组件中的各个检查框的。具体如下:
假定CheckBoxList组件有四个检查框,并且RepeatColumns属性值为2。
(1).如果RepeatDirection = Vertical,则在页面中检查框的显示方式如下:
检查框01 检查框03
检查框02 检查框04
(2).如果RepeatDirection = Horizontal,则在页面中检查框的显示方式如下:
检查框01 检查框02
检查框03 检查框04
V > .Count属性:返回CheckBoxList组件中有多少检查框。
三. CheckBoxList组件中经常使用到的方法:
(1).在组件中增加一个检查框,语法如下:
CHKList . Items . Add ( new ListItem ( < text > , < value > ) )
(2).访问组件中的检查框,语法如下:
CHKList . Items [ < index > ]
(3).删除组件中的检查框,语法如下:
CHKList . Items . Remove ( < index > )