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.
You can handle the change event of the select to open the links, like this:
html:
javascript: