0 out of 1 rated this helpful - Rate this topic

RadioButtonList.RepeatLayout Property

Gets or sets a value that specifies whether the list will be rendered by using a table element, a ul element, an ol element, or a span element.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)
public virtual RepeatLayout RepeatLayout { get; set; }
<asp:RadioButtonList RepeatLayout="RepeatLayout" />

Property Value

Type: System.Web.UI.WebControls.RepeatLayout
A value that specifies whether the list will be rendered by using a table element, a ul element, an ol element, or a span element. The default is Table.
Exception Condition
ArgumentOutOfRangeException

The radio button layout is not one of the RepeatLayout values.

For information about the available options, see the RepeatLayout enumeration.

Note Note

Two options are new as of ASP.NET 4: OrderedList and UnorderedList.

Some RepeatLayout settings do not allow horizontal layout. For more information, see the RepeatLayout enumeration.

The following code example demonstrates how to use the RepeatLayout property to display the items of a RadioButtonList control in a table.


<%@ Page Language="C#" AutoEventWireup="True" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>RadioButtonList.RepeatLayout Example</title>
</head>
<body>

<asp:RadioButtonList id="RadioButtonList1"
      RepeatColumns = "2" 
      RepeatDirection="Vertical" 
      RepeatLayout="Table"  
      runat="server">

    <asp:ListItem>Item 1</asp:ListItem>
    <asp:ListItem>Item 2</asp:ListItem>
    <asp:ListItem>Item 3</asp:ListItem>
    <asp:ListItem>Item 4</asp:ListItem>
    <asp:ListItem>Item 5</asp:ListItem>
    <asp:ListItem>Item 6</asp:ListItem>

 </asp:RadioButtonList>
</body>
</html>   


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ