Is there anyway to make this work:
<select>
<option>@Html.ActionLink("View", "View", "Person")</option>
<option>@Html.ActionLink("Edit", "Edit", "Person")</option>
</select>
So it's basically a dropdown full of links. When you click a link it should direct to the action method like a normal ActionLink helper.