ASP.NET RepeatDirection Property

Definition and Usage

The RepeatDirection property is used to get or set whether the items in RadioButtonList are displayed vertically or horizontally

Syntax

<asp:RadioButtonList RepeatDirection="mode" runat="server">
some content
</asp:RadioButtonList >
Property Description
mode

Specifies the layout direction of items in RadioButtonList.

Possible values:

  • Horizontal - Items are displayed horizontally
  • Vertical - Default. Items are displayed vertically.

Example

The following example sets the RepeatDirection of RadioButtonList control:

<form runat="server">
<asp:RadioButtonList id="rb1"
runat="server" RepeatDirection="Horizontal">
Some content
</asp:RadioButtonList>
</form>

Example

Set the RepeatDirection of RadioButtonList Control