How to: Specify Flow or Table Format in DataList Web Server Controls
The DataList control allows you to display the items in the control in a variety of ways. You can specify that the control renders items in either flow mode (like a Word document) or in table mode (like an HTML table). Flow mode is suitable for simple layouts. Table mode gives you more precise control of the layout than flow mode, and it allows you to use table attributes, such as CellPadding.
- Set the DataList control's RepeatLayout property to either Flow or Table.
Use the RepeatLayout enumeration, as shown in the following code example.
DataList1.RepeatLayout = RepeatLayout.Flow
DataList1.RepeatLayout = RepeatLayout.Flow;