MajidSafari / NotFoundMvc

Provides a user-friendly '404' page whenever a controller, action or route is not found in your ASP.NET MVC3 application. A view called NotFound is rendered instead of the default ASP.NET error page.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NotFoundMvc

daviddesloovere MyGet Build Status

Created by Andrew Davey - http://aboutcode.net

Picked up by David De Sloovere - https://about.me/DavidDeSloovere

Provides a user-friendly '404' page whenever a controller, action or route is not found in your ASP.NET MVC3/MVC4/MVC5 application. A view called NotFound is rendered instead of the default ASP.NET error page.

Use NuGet to install NotFound MVC: https://www.nuget.org/packages/NotFoundMvc

Take a look at the sample application for basic usage. Essentially you just have to add the NotFoundMvc package to your app and optionally alter the NotFound.cshtml view to your app. You also need to change BlockViewHandler in Views\web.config to use NotFoundMvc.NotFoundHandler.

Starting with v1.4, you can plug in an action to be executed on a 404.

NotFoundConfig.OnNotFound = (req, uri) =>
{
    // The current URI, which can be the same as 
    // the original requested URI http://localhost:43825/bin
    // or triggered from the IIS via the system.webServer/httpErrors
    // and look like this http://localhost:43825/notfound?404;http://localhost:43825/bin
    System.Diagnostics.Trace.WriteLine(req.Url.ToString());

    // This is the original requested URI http://localhost:43825/bin
    System.Diagnostics.Trace.WriteLine(uri);

    // log string w/ NLog
    Log.Warn(CultureInfo.InvariantCulture, "404 {0}", uri);

    // log as error w/ ELMAH
    Elmah.ErrorSignal.FromCurrentContext().Raise(new HttpException(404, uri.ToString()));
};

NotFoundMvc automatically installs itself during web application start-up. It handles all the different ways a 404 HttpException is usually thrown by ASP.NET MVC. This includes a missing controller, action and route.

A catch-all route is added to the end of RouteTable.Routes. The controller factory is wrapped to catch when controller is not found. The action invoker of Controller is wrapped to catch when the action method is not found.

About

Provides a user-friendly '404' page whenever a controller, action or route is not found in your ASP.NET MVC3 application. A view called NotFound is rendered instead of the default ASP.NET error page.


Languages

Language:C# 48.3%Language:HTML 26.8%Language:JavaScript 18.2%Language:Smalltalk 2.8%Language:CSS 2.4%Language:Batchfile 1.3%Language:ASP 0.3%