I need to hide a actionlink on my _layout view. if it have to be hidden or not depends on data from DB where it is said if the person is admin or not.
How to hide the action link?
I want to send a simple request to my controller asking if the person who is logged in is admin or not?
I do not want to use IsAuthenticated option
Answer was simple
@if (Convert.ToBoolean(ViewData["admin"])==true)
{
<li>@Html.ActionLink("Admin", "Admin", "Admin") </li>
}