Ok so I basically have a survey wizard with 4 parts in it, I need to display 5 separate results into each, but a for loop as below, will obviously display all results and will therefore break the wizard, how can I loop through this in a for loop? Any help will be greatly appreciated, thanks
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.Category.Title)
</td>
<td>
@Html.DisplayFor(modelItem => item.Survey.Title)
</td>
<td>
@Html.DisplayFor(modelItem => item.Title)
</td>
</tr>
}