Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
404
- Loading branch information
1 parent
0109d62
commit 48ed632e7045522e1404f1739dcc2cd982a63697
Showing
4 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System.Web.Mvc; | ||
|
||
namespace Blog.Web.Actions.DisplayErrors | ||
{ | ||
public class DisplayErrorsController : Controller | ||
{ | ||
public ActionResult Http404() | ||
{ | ||
return View(); | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@model dynamic | ||
|
||
@{ | ||
ViewBag.Title = "404"; | ||
Layout = "~/Views/_Layout.cshtml"; | ||
} | ||
|
||
<h2>404</h2> | ||
|
||
Hmmm. The page you're looking for seems to be missing. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters