Table format of RadioButtonList
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>