Skip to content

Instantly share code, notes, and snippets.

@iamlucianojr
Created May 13, 2016 13:14
Show Gist options
  • Save iamlucianojr/41dd854171b190c23ff25782e3d16934 to your computer and use it in GitHub Desktop.
Save iamlucianojr/41dd854171b190c23ff25782e3d16934 to your computer and use it in GitHub Desktop.
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.CourseID)
</td>
<td>
@Html.DisplayFor(modelItem => item.Title)
</td>
<td>
@Html.DisplayFor(modelItem => item.Credits)
</td>
<td>
@Html.DisplayFor(modelItem => item.Department.Name)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id = item.CourseID }) |
@Html.ActionLink("Details", "Details", new { id = item.CourseID }) |
@Html.ActionLink("Delete", "Delete", new { id = item.CourseID })
</td>
</tr>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment