我在VS2010中創建一個新的MVC應用程序開箱。在主控制器我已經療法如下:錯誤處理不工作的ASP.NET MVC
[HandleError(View = "Error")]
public ActionResult Index()
{
int num1 = 0;
int num2 = 5;
int result = num2/num1;
return View();
}
這將創建一個錯誤和調試彈出,然後如果我繼續一個黃色畫面。我無法將它重定向到Error.aspx頁面。我有這樣的web.config:
<customErrors mode="On" defaultRedirect="~/Error.aspx">
</customErrors>
但它不會重定向到正確的錯誤頁面,儘管是一個全新的項目。我如何配置這個工作請?
謝謝
在黃色屏幕上發佈錯誤消息 – amurra 2010-07-19 19:04:47