制作asp:CheckBoxList项目并排

时间:2016-10-25 07:38:06

标签: c# asp.net checkboxlist

我遇到了问题,我无法在网络上找到解决方案。我正在使用asp CheckBoxList,但我有太多的数据要列出。我想在框区域中列出2列中的项目。我正在分享一张图片。请检查一下。那我该怎么做呢?

enter image description here

重要的是;此复选框列表从后面的代码动态填充。我在html页面上没有ListItem。所以我不能打造他们的风格。有什么想法吗?

<asp:CheckBoxList ID="AreaCheckBoxes" runat=server>

</asp:CheckBoxList>

1 个答案:

答案 0 :(得分:1)

您可以将RepeatColumns属性设置为2,将RepeatLayout属性设置为Table

<asp:CheckBoxList ID="AreaCheckBoxes" 
                  RepeatColumns="2" 
                  RepeatLayout="Table" 
                  RepeatDirection="Vertical"
                  runat=server>
</asp:CheckBoxList>