2
Answers

Table format of RadioButtonList

Photo of Ajay Gautam

Ajay Gautam

14y
10.8k
1
Hi All,

I have radiobuttonlist with 3 listItem, i need to give the table format  to radiobuttonlist means it looks like table with row, how can i give, Any idea?

My code:-

<asp:RadioButtonList ID="RbAccount" runat="server" BorderWidth="1">
    <asp:ListItem Value="update" Selected="True">Change existing account </asp:ListItem>
        <asp:ListItem Value="deprovision">Remove an account </asp:ListItem>
        <asp:ListItem Value="new" Enabled="false">Create a new account </asp:ListItem>
</asp:RadioButtonList>

Answers (2)