Asp.net单选按钮序列渲染

时间:2018-09-19 09:20:28

标签: asp.net

在我的表单中,我有两个单选按钮(asp.net),分别为rb1rb2,而GroupName则同时应用于Grp。渲染Page时,需要先渲染rb2,最后渲染rb1

是否有任何预定义的渲染顺序属性?

示例:

<asp:RadioButton ID="rb1" runat="server" Text="Radio Button1" GroupName="Grp" />
<asp:RadioButton ID="rb2" runat="server" Text="Radio Button2" GroupName="Grp" />

1 个答案:

答案 0 :(得分:0)

尝试这种类型。

<asp:RadioButton ID="rbtn1" runat="server" GroupName="Grp" Text="Button1" />

<asp:RadioButton ID="rtbn2" runat="server" GroupName="Grp" Text="Button2" />

我个人更喜欢使用RadioButtonList:

<asp:RadioButtonList ID="rblSystem" runat="server">
    <asp:ListItem Text="button1" Value="button1" />
    <asp:ListItem Text="button2" Value="button2" />
</asp:RadioButtonList>