自定义 elmah.axd 输出字段
ELMAH 默认在其错误日志网页上显示主机、代码、类型、错误、用户、日期和时间。有没有办法配置它并显示其他字段,如 IP 或 REFERER?
(来源: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?
(source: googlecode.com)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以编写自己的错误页面。将数据网格绑定到 ErrorLog.GetErrors() 并使用您想要的任何列:
You could write your own error page. Bind a datagrid to
ErrorLog.GetErrors()
and use whatever columns you want: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.