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
You could use the User.IsInRole
method:
@if (User.IsInRole("admin"))
{
<li>Only the admin can see this menu item</li>
}
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>
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With