8.1: Detail View
Create the Detail View
ActionLinks
</div> <p> @Html.ActionLink("Edit", "Edit", new { id = Model.NoteId }) | @Html.ActionLink("Back to List", "Index") </p></td> <td> @Html.ActionLink("Edit", "Edit", new { id=item.NoteId }) | @Html.ActionLink("Details", "Details", new { id=item.NoteId }) | @Html.ActionLink("Delete", "Delete", new { id=item.NoteId }) </td> </tr> }
Last updated

