NotFoundMvc icon indicating copy to clipboard operation
NotFoundMvc copied to clipboard

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.

Results 2 NotFoundMvc issues
Sort by recently updated
recently updated
newest added

I have a route define for controller using attribute routing ``` [RoutePrefix("blog")] public class BlogController : Controller { [HttpGet] [Route("detail")] public ActionResult Detail() { return View(); } } ``` I...

When upgrading the package to 1.4.0, my web.config is being transformed incorrectly. The allow zombie DOS names line had a transform attribute added to it: ``` ``` A second httpRuntime...

up-for-grabs