65.9K
CodeProject is changing. Read more.
Home

How to manage controller/action not found in ASP.NET MVC

emptyStarIconemptyStarIconemptyStarIconemptyStarIconemptyStarIcon

0/5 (0 vote)

May 22, 2013

CPOL
viewsIcon

16869

Manage controller/action not found in ASP.NET MVC

Introduction

A common error when we developed web sites is that we forget to manage the error 404 (resource not found), so I will show how to manage this problem easily in ASP.NET MVC.

Using the code

First, create a new ASP.NET MVC 4 Project using the basic template, this template looks like:

Basic template MVC 4

Next, add the package NotFound MVC using Nuget:

NotFound MVC Package using Nuget


When the package is installed, you can see that a new view was create at the folder Views/Shared:

NotFound View

Now, if you run the application, automatically you are sent to the NotFound view:

NoFound View Redirect

The next step, is that you personalize the view.