Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6193255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:05:14+00:00 2026-05-24T03:05:14+00:00

I am using asp.net mvc with razor. How can I hide links which are

  • 0

I am using asp.net mvc with razor. How can I hide links which are only for admins?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T03:05:15+00:00Added an answer on May 24, 2026 at 3:05 am

    You could declare a boolean property on your view model:

    public class MyViewModel
    {
        public bool IsAdmin { get; set; }
    
        ... some other model properties
    }
    

    and inside your view:

    @if (Model.IsAdmin)
    {
        <!-- show the link that only administrators are supposed to see -->
        @Html.ActionLink("Do something very special", "Bar")
    }
    

    and of course inside the controller action rendering this view you would populate this view model:

    [Authorize]
    public ActionResult Foo()
    {
        var model = new MyViewModel
        {
            IsAdmin = User.IsInRole("Admin")
        };
        return View(model);
    }
    

    Obviously the Bar action which only administrators could invoke should be decorated with the Authorize attribute as well:

    [Authorize(Roles = "Admin")]
    public ActionResult Bar()
    {
        ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can i directly access a .cshtml file in ASP.NET MVC using razor view
Using ASP.NET MVC can be used the view engine Razor. Razor let you use
i am working in asp.net mvc 3 web application which uses razor code. and
The DataAnnotations validator not working in asp.net mvc 4 razor view, when using the
I'm using Extensions for ASP.NET MVC Q3 2011(open source version) with Razor engine and
Using ASP.NET MVC's default view engine, you can declare a server-side comment like this:
I'm using ASP.Net MVC 3 with the Razor engine. I have an html helper
I am using ASP.NET MVC 2 & 3 with aspx View not Razor View,
I'm using ASP.NET MVC 3 (Razor) and have created a Controller named Controllers -
I am developing a mathematics site using Asp.Net MVC 3 + Razor + MathJax.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.