view list of table mvc code example
Example: asp display object list in table
<% foreach(var notice in Model.Notices) { %>
<tr>
<td><%= notice.StartDate.ToString() %></td>
<td><%= notice.EndDate.ToString() %></td>
<td><%= notice.Content %></td>
</tr>
<% } %>