Yogesh
Yogesh

Reputation: 3076

Hide and visible the div tags of Layout.cshtml on the basis of user role in Asp.net MVC4(Razor)

I am having a master page which is having some menus for a Role called user and other menus are for the role of Admin, So what i am willing is to check the role of the user and and show some div tags and hide others on the basis of user role.

As, we don't have controller for layout.cshtml, so how i can set the viewModel for layout view Wherein i can check the role of the current user

How to do role based checking on the layout.cshtml.

I have been through followin question but it has not been answered by now

How to Show or hide controls based on roles - ASP.NET MVC 4 Razor

So,Please tell me the possible solution and which way would be the best for applying role based checking in layout.cshtml

Upvotes: 4

Views: 15695

Answers (2)

Yogesh
Yogesh

Reputation: 3076

You can use Following code for role based checking

@if(Request.IsAuthenticated)

{
    if(User.IsInRole("Admin")
    {
     <Ul Class="SubMenuItem">

     <li> this menu item is for Admin role</li>
     </Ul>
    }
     if(User.IsInRole("User")
    {
     <Ul Class="SubMenuItem">

     <li> this menu item is for User role</li>
     </Ul>
    }
}

For unknown user

else
{
 <Ul Class="SubMenuItem">

     <li> this menu item is for Unknown user</li>
     </Ul>
}

Upvotes: 3

Darin Dimitrov
Darin Dimitrov

Reputation: 1039428

You could use the User.IsInRole method:

@if (User.IsInRole("admin"))
{
    <li>Only the admin can see this menu item</li>
}

Upvotes: 12

Related Questions