自定义 elmah.axd 输出字段

发布于 2024-08-27 07:27:06 字数 345 浏览 7 评论 0原文

ELMAH 默认在其错误日志网页上显示主机、代码、类型、错误、用户、日期和时间。有没有办法配置它并显示其他字段,如 IP 或 REFERER?

elmah 输出示例
(来源:googlecode.com

ELMAH shows host, code, type, error, user, date and time by default on its error log web page. Is there any way to configure it and show other fields like IP or REFERER?

elmah output example
(source: googlecode.com)

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

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

发布评论

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

评论(2

家住魔仙堡 2024-09-03 07:27:06

您可以编写自己的错误页面。将数据网格绑定到 ErrorLog.GetErrors() 并使用您想要的任何列:

List<ErrorLogEntry> entries = new List<ErrorLogEntry>();
ErrorLog.GetDefault(HttpContext.Current).GetErrors(0, 50, entries);
string ip = entries[0].Error.ServerVariables["REMOTE_ADDR"];
string referrer = entries[0].Error.ServerVariables["HTTP_REFERER"];

You could write your own error page. Bind a datagrid to ErrorLog.GetErrors() and use whatever columns you want:

List<ErrorLogEntry> entries = new List<ErrorLogEntry>();
ErrorLog.GetDefault(HttpContext.Current).GetErrors(0, 50, entries);
string ip = entries[0].Error.ServerVariables["REMOTE_ADDR"];
string referrer = entries[0].Error.ServerVariables["HTTP_REFERER"];
独﹏钓一江月 2024-09-03 07:27:06

ELMAH 是开源的。您可以下载源代码并进行任何您喜欢的修改(当然,在许可证条款的范围内)。

您应该能够捕获 HttpConext.Request 对象提供的任何数据。您必须修改获取和存储数据的代码以及数据库以便为新数据创建列。

ELMAH is open-source. You can download the source and make any modifications you like (within the terms of the license, of course.)

You should be able to trap any data made available by the HttpConext.Request object. You'd have to modify the code that grabs and stores the data, and the database to make columns for that new data.

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