开发者

How to find in which controller/action an error occurred?

I'm logging all errors occuring in my OnException method.

How to find in w开发者_如何学Gohich controller/action an error occurred?


As Charlino implied, the values are available from the ExceptionContext parameter:

protected override void OnException(ExceptionContext filterContext)
{
    var controllerName = filterContext.RouteData.Values["controller"];
    var actionName = filterContext.RouteData.Values["action"];

    // ...

    base.OnException(filterContext);
}


Check the exception's call stack.

For example:

var actionMethod = new StackTrace(exception)
    .GetFrames().FirstOrDefault(f => 
        typeof(IController).IsAssignableFrom(f.GetMethod().DeclaringType)
    ).GetMethod();


Add the following method in your global.asax and put a break point on it

public void Application_Error(object sender, EventArgs e)
    {


    }

No matter where in the application an error occurs, the break point on this method will be hit. From here you can see the value for the following expression in the quick watch window and you will know what exactly was the cause of the exception that occurred

((System.Web.HttpApplication)(sender)).Context.AllErrors

This method will help, no matter where the exception occurs in your web application.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜