アプリケーションの例外に応じてエラーページをカスタマイズできる記事を探していました.以下の方法を試しました
public class ErrorController : Controller
{
public ActionResult Index(int status, Exception error)
{
Response.StatusCode = status;
ViewBag.status = status;
return View(status);
}
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
}
}
グローバル.asax
protected void Application_Error(object sender, EventArgs e)
{
var ex = Server.GetLastError().GetBaseException();
Server.ClearError();
var routeData = new RouteData();
routeData.Values.Add("controller", "Error");
routeData.Values.Add("action", "Index");
if (ex.GetType() == typeof(HttpException))
{
var httpException = (HttpException)ex;
var code = httpException.GetHttpCode();
routeData.Values.Add("status", code);
}
else
{
routeData.Values.Add("status", 500);
}
routeData.Values.Add("error", ex);
IController errorController = new trialerror.Controllers.ErrorController();
errorController.Execute(new RequestContext(new HttpContextWrapper(Context), routeData));
}
protected void Application_EndRequest(object sender, EventArgs e)
{
if (Context.Response.StatusCode == 401)
{ // this is important, because the 401 is not an error by default!!!
throw new HttpException(401, "You are not authorised");
}
}
index.cshtml
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
<html>
<head>
<title> Error</title>
</head>
<body>
<div>
@{
int x=ViewBag.status;
}
<p style=" color: Red;">
@switch (x) {
case 401: {
<span>PAGE NOT FOUND</span>
}
break;
case 403: {
<span>FORBIDDEN</span>
}
break;
case 404: {
<span>We have experienced a 404 error.Site temporarily down</span>
}
break;
case 500: {
<span>please refresh page and try again!</span>
}
break;
//and more cases for more error-codes...
default: {
<span>Unknown error!!!</span>
}
break;
}
</p>
</div>
</body>
</html>
コードは、ケース内のすべてのエラーに対してカスタマイズされたページを提供できます。
例:「null 値の例外または接続文字列の例外」。
私の疑問は、どうすればその理由を説明できるかということです。続ける気もないの?