日期:2014-05-17 浏览次数:20653 次
<asp:CheckBoxList ID="Interest" runat="server" RepeatDirection="horizontal" RepeatLayout="flow"> </asp:CheckBoxList> <asp:TextBox ID="InterestOther" runat="server" CssClass="input1"></asp:TextBox>
<table><tr><td> <asp:CheckBoxList ID="Interest" runat="server" RepeatDirection="horizontal" RepeatLayout="flow"> </asp:CheckBoxList> </td><td> <asp:TextBox ID="InterestOther" runat="server" CssClass="input1"></asp:TextBox> </td></tr></table>
------解决方案--------------------
如果使用的是ASP.NET 4.0 可以使用新属性控制呈现
RepeatDirection="Horizontal" RepeatLayout="Flow"
------解决方案--------------------
明白你意思了,因为checkboxlist会每一行追加一个<br />,所以给checkboxlist设置css像
style="display:inline-block;"
可以达到目的