for example i have this radio button.
(o) item1 (o) item 2
however, i want it to be like:
(o) item1 (o) item2
line here line here
My current markup is:
<asp:RadioButtonList ID="RadioButtonList1" runat="server" RepeatDirection="Horizontal" Width="650px" Font-Size="Smaller">
<asp:ListItem Selected="True" Value="0">Relax<br>(MY MAN)</asp:ListItem>
<asp:ListItem Value="1">Relax Again<br>(My Man)</asp:ListItem>
<asp:ListItem Value="2">Relax Again 2<br>(MyMan)</asp:ListItem>
<asp:ListItem Value="3">Relax 3<br>(My Man)</asp:ListItem>
<asp:ListItem Value="4">Relax 4<br>(My Man)</asp:ListItem>
<asp:ListItem Value="5">Relax 5<br>(My Man)</asp:ListItem>
<asp:ListItem Value="6">Relax 6<br>(My Man)</asp:ListItem>
</asp:RadioButtonList>
But it generates the following validation error messages: the element 'br' cannot be nested within the element 'listitem'
.