1

我想知道是否可以在不修改 web.config 或 global.asax 文件的情况下捕获未处理的错误。

理想情况下,我会使用 WebActivator 包并具有以下内容:

[assembly: WebActivator.PostApplicationStartMethod(typeof(MyProject.Initialize), "Start")]

namespace MyProject
{
    using System;
    using System.Collections.Generic;
    using System.Web;
    using System.Web.Mvc;

    internal static Initialize
    {
        public static void Start()
        {
              // this doesn't work
              HttpContext.Current.ApplicationInstance.Error += ApplicationInstance_Error;
        }

        // this never fires
        static void ApplicationInstance_Error(object sender, EventArgs e)
        {
            throw new NotImplementedException();
        }
    }
}

问题 #1: 是否可以在不修改 web.config 或 global.asax 文件的情况下捕获未处理的错误?

问题2: 如何?

更新:我在下面发布了一个答案。我不确定这是否是最好的方法。任何意见表示赞赏。

4

1 回答 1

0

我能够使用这种方法得到一些工作:

[assembly: WebActivator.PreApplicationStartMethod(typeof(MyProject.Initialize), "Start")]

namespace MyProject
{
    using System;
    using System.Collections.Generic;
    using System.Web;
    using System.Web.Mvc;

    internal static Initialize
    {
        public static void Start()
        {
            GlobalFilters.Filters.Add(new WatchExceptionAttribute());
        }
    }

    public class CustomHandleErrorAttribute : HandleErrorAttribute
    {
        public override void OnException(ExceptionContext filterContext)
        {
            // do your thing here.
        }
    }
}
于 2012-04-17T02:24:43.193 回答