如何访问 MVC 错误视图中未处理的异常?

发布于 2024-09-12 15:14:59 字数 238 浏览 2 评论 0原文

当控制器上的 HandleError 属性检测到未处理的异常并重定向到错误视图时,我想向用户提供错误的简短描述,以及通过电子邮件将错误发​​送到应用程序的选项行政人员。

我确实有一个自定义 HandleError 来通知 Elmah 记录错误,但必须在 Elmah 日志中查找错误似乎是最后的手段。是否有其他方法可以访问由 HandleError“捕获”的未处理异常?

When the HandleError attribute on a controller detects an unhandled exception and redirects to the Error view, I would like to provide the user with a brief description of the error, and an option to email the error to the application administrator.

I do have a custom HandleError that notifies Elmah to log the error, but having to look up the error in the Elmah log seems a bit of a last resort. Is there any other way to access the unhandled exception that is 'caught' by HandleError?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别在捏我脸啦 2024-09-19 15:14:59

HandleErrorAttribute 提供 HandleErrorInfo 类型的 Model 对象
您的错误页面可能如下所示。

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<HandleErrorInfo>" %>

模型有一个 Exception 属性,其中包含处理的异常的详细信息。

我通常使用自定义错误处理程序,它还使用 log4net 记录异常,并且我有一个STMP 附加程序会在过滤器处理异常时向我发送电子邮件。

HandleErrorAttribute supplies a Model object of type HandleErrorInfo
Your Error page could look like this

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<HandleErrorInfo>" %>

The Model has an Exception property with the details of the exception handled.

I usually use a custom error handler that also logs the exception using log4net and I have an STMP appender that emails me whenever an exception is handled by the filter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文