System.Web
1.0.5000.0
2.0.0.0
Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.
System.Enum
The enumeration represents the different layout options for a list control.
Specifies the layout of items in a list control.
Field
System.Web.UI.WebControls.RepeatLayout
The following example shows markup that is rendered for a control whose property is set to .
<span id="ctl00_MainContent_CheckBoxList1">
<input id="ctl00_MainContent_CheckBoxList1_0" type="checkbox"
name="ctl00$MainContent$CheckBoxList1$0" value="Item 1" />
<label for="ctl00_MainContent_CheckBoxList1_0">Item 1</label>
<br />
<input id="ctl00_MainContent_CheckBoxList1_1" type="checkbox"
name="ctl00$MainContent$CheckBoxList1$1" value="Item 2"/>
<label for="ctl00_MainContent_CheckBoxList1_1">Item 2</label>
<br />
<input id="ctl00_MainContent_CheckBoxList1_2" type="checkbox"
name="ctl00$MainContent$CheckBoxList1$2" value="Item 2" />
<label for="ctl00_MainContent_CheckBoxList1_2">Item 2</label>
</span>
Items are displayed without a table structure. Rendered markup consists of a span element and items are separated by br elements.
1.0.5000.0
2.0.0.0
Field
System.Web.UI.WebControls.RepeatLayout
The following example shows markup that is rendered for a control whose property is set to .
This option causes the control to render HTML that might not conform to accessibility standards. For more information, see Accessibility in Visual Studio 2010 and ASP.NET 4.
<table id="ctl00_MainContent_CheckBoxList2">
<tr>
<td>
<input id="ctl00_MainContent_CheckBoxList2_0" type="checkbox"
name="ctl00$MainContent$CheckBoxList2$0" value="Item 1" />
<label for="ctl00_MainContent_CheckBoxList2_0">Item 1</label>
</td>
</tr>
<tr>
<td>
<input id="ctl00_MainContent_CheckBoxList2_1" type="checkbox"
name="ctl00$MainContent$CheckBoxList2$1" value="Item 2" />
<label for="ctl00_MainContent_CheckBoxList2_1">Item 2</label>
</td>
</tr>
<tr>
<td>
<input id="ctl00_MainContent_CheckBoxList2_2" type="checkbox"
name="ctl00$MainContent$CheckBoxList2$2" value="Item 3" />
<label for="ctl00_MainContent_CheckBoxList2_2">Item 3</label>
</td>
</tr>
</table>
Items are displayed in a table.
1.0.5000.0
2.0.0.0