I can\'t see to retrieve an ID I\'m sending in a html.ActionLink in my controller, here is what I\'m trying to do
<%= Html.ActionLink(\"Mod
In MVC 4 you can link from one view to another controller passing the Id or Primary Key via
@Html.ActionLink("Select", "Create", "StudentApplication", new { id=item.PersonId }, null)