如何处理RadioButtonList中过长的…

来源:互联网 发布:盛世景 知乎 编辑:程序博客网 时间:2024/05/29 03:35
实例:

<asp:RadioButtonList ID="wlhds" runat="server"RepeatColumns="4
                           RepeatDirection="Horizontal">
                           <asp:ListItem Selected="True"Value="1">海运货盘</asp:ListItem>
                           <asp:ListItemValue="2">空运货盘</asp:ListItem>
                           <asp:ListItemValue="3">海运运价</asp:ListItem>
                           <asp:ListItemValue="4">空运运价</asp:ListItem>
                           <asp:ListItemValue="5">货源运输</asp:ListItem>
                           <asp:ListItemValue="5">货源运输</asp:ListItem>
                           <asp:ListItemValue="5">货源运输</asp:ListItem>
                           <asp:ListItemValue="5">货源运输</asp:ListItem>
                       </asp:RadioButtonList>

RepeatDirection="Horizontal"——表示水平显示

RepeatColumns="4—————— 表示每行显示几个ListItem

RepeatDriection="Vertical"----表示自动换行

0 0
原创粉丝点击