MVC 5 で Elmah を操作する方法を教えてください。エラーが発生すると、サービス エラーのようなデフォルト ページにリダイレクトする必要があります。Http が見つかりません。
public ActionResult About()
{
ViewBag.Message = "Your app description page.";
try
{
int message = Convert.ToInt32("Hello");
}
catch (Exception exp)
{
Elmah.ErrorSignal.FromCurrentContext().Raise(exp);
// throw;
}
return View();
}
エラーページにリダイレクトするにはどうすればよいですか