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

15,074

Solution 1

You could use the User.IsInRole method:

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

Solution 2

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>
}
Share:
15,074
Yogesh
Author by

Yogesh

Updated on June 05, 2022

Comments

  • Yogesh
    Yogesh almost 2 years

    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