<!DOCTYPE html>
<html>
<body>
<form runat="server">
<p>RepeatLayout is set to Table</p>
<asp:RadioButtonList id="lb1" runat="server">
<asp:ListItem Value="Item 1" />
<asp:ListItem Value="Item 2" />
<asp:ListItem Value="Item 3" />
<asp:ListItem Value="Item 4" />
</asp:RadioButtonList>
<p>RepeatLayout is set to Flow</p>
<asp:RadioButtonList id="lb2" runat="server" RepeatLayout="Flow">
<asp:ListItem Value="Item 1" />
<asp:ListItem Value="Item 2" />
<asp:ListItem Value="Item 3" />
<asp:ListItem Value="Item 4" />
</asp:RadioButtonList></form>
</body>
</html>