CheckBoxList 不換行的做法

2009年9月16日 星期三

之前在用CheckBoxList 時都會有他都會自動斷行,若不要斷行的話可用以下方式:
RepeatLayout="Flow" :不斷行
RepeatLayout="Table"用Table包起來,會斷行。
RepeatColumns="2" 幾個選項後斷行

RadioButtonList的用法和CheckBoxList是一樣的。


<asp:CheckBoxList ID="TrainArea" runat="server" RepeatLayout="flow" RepeatColumns="2">
<asp:ListItem Text="Option1" Value="0"></asp:ListItem>
<asp:ListItem Text="Option2" Value="1"></asp:ListItem>
</asp:CheckBoxList>

0 意見: