Click here to Skip to main content
15,896,557 members
Articles / Web Development / ASP.NET
Tip/Trick

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

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
21 May 2013CPOL 16.6K   8  
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.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) BDotNet
Colombia Colombia
Microsoft ASP.NET MVP, I love software development, especially web development, I have worked with Microsoft technologies for about five years in the development of large scale enterprise applications, co-creator of several Carreras for the Microsoft Virtual Academy (MVA), speaker at events Microsoft Colombia and member of the Core Group BDotNet community. You can see some of my contributions in http://julitogtu.com/

Comments and Discussions

 
-- There are no messages in this forum --