Is there a way to return the same view every time a HttpNotFoundResult is returned from a controller? How do you specify this view? I\'m guessing configuring a 404 page in
protected override void HandleUnknownAction(string actionName) { ViewBag.actionName = actionName; View("Unknown").ExecuteResult(this.ControllerContext); }