I would like to be able to use the ASP.Net Repeater control to create an HTML Table that has three columns and as many rows as necc.
For example if the Data were to look like this
"Phil Hughes"
"Andy Petite"
"CC Sabathia"
"AJ Burnett"
"Javier Vazquez"
I would like the resulting table to be like
<table>
<tr>
<td>Phil Hughes</td>
<td>Andy Petite</td>
<td>CC Sabathia</td>
</tr>
<tr>
<td>AJ Burnett</td>
<td>Javier Vazquez</td>
<td></td>
</tr>
</table>
How can I do this?
It's better to use a DataList control intstead as it has the interesting properties RepeatColumns and RepeatDirection.