以下从MVC中获取错误的最佳方法是什么?

时间:2015-04-20 09:10:39

标签: asp.net-mvc error-handling

在例外情况下,从MVC中获取错误的最佳方法是什么?

protected void Application_Error(object sender, EventArgs e)
        {
        Exception ex0 = this.Context.Error;
        Exception ex1 = httpContext.Error;
        Exception ex2 = Server.GetLastError();
}

他们返回相同的错误。

1 个答案:

答案 0 :(得分:0)

Server.GetLastError()应该在global.asax中的Application_Error()中使用