Right now I have this code which enumerates to a singe column table all the way down the page.
Is there a way to make it two colums next to each other all the way to the end?
<table>
<% foreach (var item in Model)
{ %>
<tr>
<td>
<%=Html.Encode(item.PartNo)%>
</td>
</tr>
<% } %>
</table>