I am creating a menu that displays items depending on user roles. Ideally I would prefer to use ActionLink extension from MVC Futures, so in a view it would look like this:

@foreach (var item in Model.Items)
{
    @( Html.ActionLink<item.MyControllerType>(item.SomeAction, item.Name) )

    <!-- Rather than
    <a href="@item.Location">@item.Name</a>
    -->
}

Is that possible? I can use the standard method, but would prefer to stay away from magic strings

link|improve this question

77% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.