を使用してasp.net MVCアプリケーションで例外を処理しようとしています[HandleError]
。
Web構成で変更しました<customErrors mode="On" />
Cutom Error Like では機能しませんNotImplementedException
CustomErrorView
共有フォルダに保管しています。
助けてください....
namespace MvcApplicationErrorHandling.Controllers
{
[HandleError(Order = 2)]
[HandleError(ExceptionType = typeof(NotImplementedException), View = "CustomErrorView")]
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Message = "Welcome to ASP.NET MVC!";
return View();
}
public ActionResult About()
{
return View();
}
public ActionResult ThrowException()
{
throw new ApplicationException();
}
public ActionResult ErrorDemo()
{
string strtemp;
Object obj = null;
strtemp = obj.ToString();
return View();
}
public ActionResult ThrowNotImplemented()
{
throw new NotImplementedException();
}
}
}