由于每一个RadioButton Web 控件是独立的控件,若要判断同一个群组内的RadioButton 是否被选择,则必须判断所有的RadioButton Web 控件的Checked 属性,这样判断实在是很没效率。所以微软便制作了RadioButtonList Web 控件,这个RadioButtonList 控件可以管理许多选项,其使用语法如下:
<ASP:RadioButtonList
Id="被程序代码所控制的名称"
Runat="Server"
AutoPostBack="True | False"
CellPadding="像素"
*DataSource="<%数据系结叙述%>"
*DataTextField="数据源的字段"
*DataValueField="数据源的字段"
RepeatColumns="字段数量"
RepeatDirection="Vertical | Horizontal"
RepeatLayout="Flow | Table"
TextAlign="Right | Left"
OnSelectedIndexChanged="事件程序名称"
>
<ASP:ListItem/>
</ASP:RadioButtonList>