1

我试图在我的页面上设置一个 Yes/No RadioButtonList,如下所示:

[=] 是 [=] 否

目前,我的 .skin 文件中的代码如下所示:

<asp:RadioButtonList runat="server" RepeatDirection="Horizontal" RepeatColumns="2"></asp:RadioButtonList>

RBL 渲染如下:

[=] [=]
是 否

我还没有为它编写任何 CSS,所以这就是列表演示中所涉及的全部内容。

为了清楚起见,我想在各自的单选按钮旁边显示是/否文本。谁能向我解释为什么他们不是以及如何做到这一点?

4

1 回答 1

1

我并没有突然面对这个问题。但是我在 RadioButtonList 中提到了一些少量的 Width(50px) 然后它被复制了。只需将 RadioButtonList 的宽度增加一些。它将按照您的意愿呈现。

就我而言,我给出Width="95px"如下

    <asp:RadioButtonList Width="95px" ID="RadioButtonList1" runat="server" RepeatDirection="Horizontal" RepeatColumns="2">
        <asp:ListItem Text="Yes"></asp:ListItem>
        <asp:ListItem Text="No"></asp:ListItem>
    </asp:RadioButtonList>

输出

在此处输入图像描述

于 2013-07-09T14:33:55.053 回答