The problem is as: I have horizontal asp:RadioButtonList, with 3 buttons witch i add programaticly C# code The thing is that the third button must be on second line. How can i do it besides creating a new asp:RadioButtonList? I have tried adding br and \r\n to caption but that dose not help me.
ListItem _item1 = new ListItem("1", "1");
ListItem _item2 = new ListItem("2", "2");
ListItem _item3 = new ListItem("3", "3");
rbl.Items.Add(_item1);
rbl.Items.Add(_item2);
rbl.Items.Add(_item3);