Hi, i am new to ASP.NET.

How do i display display data in a grid format, with the use of datagrid, that it repeats the rows in data set in vertical and horizontal direction. it will look like this in html:

<table>
<tr>
<td>dataset Row1</td>
<td>dataset Row2</td>
<td>dataset Row3</td>
</tr>
<tr>
<td>dataset Row4</td>
<td>dataset Row5</td>
<td>dataset Row6</td>
</tr>
</table>

thanks!!!