我遇到了问题,我无法在网络上找到解决方案。我正在使用asp CheckBoxList,但我有太多的数据要列出。我想在框区域中列出2列中的项目。我正在分享一张图片。请检查一下。那我该怎么做呢?
重要的是;此复选框列表从后面的代码动态填充。我在html页面上没有ListItem。所以我不能打造他们的风格。有什么想法吗?
<asp:CheckBoxList ID="AreaCheckBoxes" runat=server>
</asp:CheckBoxList>
答案 0 :(得分:1)
您可以将RepeatColumns
属性设置为2,将RepeatLayout
属性设置为Table
。
<asp:CheckBoxList ID="AreaCheckBoxes"
RepeatColumns="2"
RepeatLayout="Table"
RepeatDirection="Vertical"
runat=server>
</asp:CheckBoxList>