5

我正在运行一些只需要运行一次的代码,但它依赖于外部资源并且可能会失败。我希望错误出现在事件日志中,但我不希望用户看到它。如果可能,我想避免使用自定义错误页面。

我可以自己捕获异常并将其写入事件日志,但我担心我无法保证 asp.net 事件源的名称是什么(它似乎会根据框架版本而变化。)我也无法创建我自己的事件源,因为这需要管理权限。

我目前正在努力的方法有点像 hack(目前还不行),它看起来像这样:

    public void Init(HttpApplication context)
    {
        try
        {
            throw new Exception("test"); // This is where the code that errors would go
        }
        catch (Exception ex)
        {
            HttpContext.Current.Application.Add("CompilationFailed", ex);
        }
    }

    private void context_BeginRequest(object sender, EventArgs e)
    {
        if (HttpContext.Current.Application.AllKeys.Contains("CompilationFailed"))
        {
            // It failed on Init - we can't throw an exception there so lets try it here

            var origEx = (Exception)HttpContext.Current.Application["CompilationFailed"];
            // Only ever do this once
            HttpContext.Current.Application.Remove("CompilationFailed");

            // This should just look like a normal page load to the user 
            // - it will be the first request to the site so we won't be 
            //  interrupting any postbacks or anything


            HttpContext.Current.Response.AddHeader("Location", "/");
            HttpContext.Current.Response.StatusCode = 301;
            try
            {
                HttpContext.Current.Response.End();
            }
            catch (ThreadAbortException ex)
            {
                throw origEx; 
            }
        }
    }

理想情况下,如果存在类似的东西,我真正想要的是 IIS 中的 RecordException() 方法。

4

2 回答 2

5

我向 ASP.NET 推荐Elmah

于 2013-07-19T16:31:00.283 回答
1

听起来您想在出现错误时收到通知,但不希望用户知道。您可以在向您发送电子邮件或写入您有权访问的数据源后重定向页面(如果发生致命错误)或完成文件/页面的其余部分的执行。

于 2013-07-19T16:29:26.883 回答