我的页面中有一个Checkboxlist,如下所示。
如您所见,2个复选框一个在另一个下方对齐。是否可以将2号线连接起来?其设计代码如下。
<td>
<asp:Label runat="server" ID="Label1" Text="Employer Type"></asp:Label>
</td>
<td valign="middle">
<asp:CheckBoxList ID="chkEmployerType" runat="server">
<asp:ListItem Value="E" Text="Employer"></asp:ListItem>
<asp:ListItem Value="O" Text="OJT Provider"></asp:ListItem>
</asp:CheckBoxList>
</td>
答案 0 :(得分:2)
写这个
<asp:Label runat="server" ID="Label1" Text="Employer Type"></asp:Label>
</td>
<td valign="middle">
<asp:CheckBoxList ID="chkEmployerType" runat="server" RepeatDirection="Horizontal">
<asp:ListItem Value="E" Text="Employer"></asp:ListItem>
<asp:ListItem Value="O" Text="OJT Provider"></asp:ListItem>
</asp:CheckBoxList>
</td>
答案 1 :(得分:1)
将CheckBoxList的RepeatDirection属性设置为Horizontal
答案 2 :(得分:0)
您需要使用RepeatDirection
属性,如下所示
RepeatDirection="Horizontal"
它会为显示项目创建ul
和li
。您可以根据需要定义css
规则。