What is the best and/or most efficient way to place Authorization on an @Html.Actionlink so so those not authrorized DO NOT SEE THE LINK.

link|improve this question

43% accept rate
feedback

2 Answers

up vote 0 down vote accepted
@if (User.IsInRole("Administrators")) { Html.ActionLink(...) }
link|improve this answer
feedback

Mystere Man was indeed first to the punch here and deserves credit, but to provide additional info this has been asked here in other similar scenarios:

User permissions on certain views based on roles

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.