我有radioButtonList
我在ASP
中有标签,radioButtonList
正确显示,但它与为其创建的标签不对齐。
我真正需要的是
1-将radioButtonList
与标签
2-单选按钮的标签必须靠近单选按钮。
如下图所示;
我的ASP代码:
<div style="display: inline;" dir="rtl">
<asp:Label ID="Label8" runat="Server" Text=" Permenat office"></asp:Label>
<asp:Label ID="Label35" runat="Server" Text="*" ForeColor="Red" Font-Bold="True"></asp:Label>
<asp:RadioButtonList runat="server" ID="rdlstPermenantOffice" >
<asp:ListItem>Yes</asp:ListItem>
<asp:ListItem>No</asp:ListItem>
</asp:RadioButtonList>
</div>
答案 0 :(得分:2)
试试这个工作正常: -
<asp:RadioButtonList ID="rblChoose" runat="server" RepeatDirection="Horizontal"
RepeatLayout="Flow">
<asp:ListItem Text="a" Value="a" />
<asp:ListItem Text="b" Value="b" />
</asp:RadioButtonList>