Gidday I have a single Array of items (total number of items in array would be variable) that i want to display in a table like format i.e.
<table>
<tr>
<td>ArrayVar[0]</td>
<td>ArrayVar[1]</</td>
</tr>
<tr>
<td>ArrayVar[2]</</td>
<td>ArrayVar[3]</</td>
etc...
or
<div style="float:left">ArrayVar[0]</div>
<div style="float:left">ArrayVar[1]</div>
etc...
How can I generate this in VB.net with say a loop I know there was something in .NET 1.1 that could do this & can't find anything for 2.0