YouTip LogoYouTip

Prop Webcontrol Checkboxlist Repeatlayout

## ASP.NET CheckBoxList RepeatLayout Property The `RepeatLayout` property is a key layout configuration option for the ASP.NET Web Forms `CheckBoxList` control. It determines how the individual checkbox items within the list are structured and rendered in the final HTML output. --- ## Definition and Usage The `RepeatLayout` property gets or sets the layout structure used to display the items in a `CheckBoxList` control. By default, ASP.NET renders a `CheckBoxList` using an HTML `` element to align the items. However, depending on your modern CSS layout requirements (such as Flexbox or Grid), you may want to render them as inline flow elements or semantic list items. --- ## Syntax ```xml ``` ### Property Values | Value | Description | | :--- | :--- | | **Table** | *(Default)* The list items are rendered inside an HTML `
` structure. This is ideal for traditional, rigid grid alignments. | | **Flow** | The list items are rendered as inline flow elements (typically wrapped in `` tags) without a table structure. This is ideal for custom CSS styling and responsive designs. | | **OrderedList** | The list items are rendered as list items (`
  • `) within an ordered list (`
      `). *(Available in .NET Framework 4.0+)* | | **UnorderedList** | The list items are rendered as list items (`
    1. `) within an unordered list (`