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 6341909
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T20:08:06+00:00 2026-05-24T20:08:06+00:00

I have seen a nice example whereby the MVC controller class inherits from another

  • 0

I have seen a nice example whereby the MVC controller class inherits from another controller class which handles an exception and returns a view with the error inside like so:

public class ApplicationController : Controller
{
    public ActionResult NotFound()
    {
        return View("NotFound");
    }

    public ActionResult InsufficientPriveleges()
    {
        return View("InsufficientPriveleges");
    }

    protected override void OnException(ExceptionContext filterContext)
    {
        if (filterContext.Exception is NotFoundException)
        {
            filterContext.Result = NotFound();
            filterContext.ExceptionHandled = true;
            return;
        }
        if (filterContext.Exception is InsufficientPrivelegesException)
        {
            filterContext.Result = InsufficientPriveleges();
            filterContext.ExceptionHandled = true;
            return;
        }

        base.OnException(filterContext);
    }
}

However, I’ve noticed that say for example my controller is loading in a partial view for something the user should not have access to, the error will then be shown inside the partial view on the page.

I’d like the whole page to show the error, in effect the exception should redirect to a completely new page. How can I achieve this using the current class shown above?

  • 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-24T20:08:08+00:00Added an answer on May 24, 2026 at 8:08 pm

    You can create a mapping from HTTP result codes to specific error handlers in your web.config:

    <customErrors mode="On" defaultRedirect="~/Error">
      <error statusCode="401" redirect="~/Error/Unauthorized" />
      <error statusCode="404" redirect="~/Error/NotFound" />
    </customErrors>
    

    and then create a custom error controller

    public class ErrorController
    { 
            public ActionResult Index ()
            {
                return View ("Error");
            }
    
            public ActionResult Unauthorized ()
            {
                return View ("Error401");
            }
    
            public ActionResult NotFound ()
            {
                return View ("Error404");
        }
        }
    

    and then throw an HttpException from your controllers

    public ActionResult Test ()
    {
        throw new HttpException ((int)HttpStatusCode.Unauthorized, "Unauthorized");
    }
    

    another alternative is to use a custom FilterAttribute to check permissions which throws a HttpException

    [Authorize (Roles = SiteRoles.Admin)]
    public ActionResult Test ()
    {
      return View ();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have seen Flexbox (http://www.fairwaytech.com/flexbox) which appears quite nice but I don't think it
I have seen examples of printing from a windows application but I have not
I have seen simple example Ajax source codes in many online tutorials. What I
I have seen links that open modal windows AND have a nice animation effect
Air 3 for mobile introduces a nice feature - StageText. I have seen a
I have always seen Throwable/Exception in the context of errors. But I can think
I am new to iPhone development. I've seen many applications, which have their settings
I have a user control which is driven by data from a sql database.
Have seen some similar questions: What is the difference between a JavaBean and a
I have seen lots of questions recently about WPF... What is it? What does

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.