我无法查看 ELMAH 项目中的 .axd 页面
我正在使用 ELMAH 项目,但无法找到 .axd 页面。我需要放置一个 UpdatePanel 和一个计时器来自动更新页面,并增加该页面上错误列表的大小。
I am using the ELMAH project and I am unable to find the .axd page. I need to put an UpdatePanel and a timer to auto-update the page and also increase the size of the errors list on that page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
elmah.axd“页面”不作为您可以打开和编辑的物理文件存在。它是通过编译的代码以编程方式创建的。
如果您想编辑错误列表或错误详细信息页面的输出,则必须转至 源代码并在那里对其进行操作,然后重新编译您的自定义版本。
顺便说一下,正如一些评论已经提到的,错误页面已经通过元刷新(每 60 秒一次)进行刷新。如果需要,您可以通过操作查询字符串来更改显示的错误数 (elmah.axd?page=1&size=100),最多可达 100。
The elmah.axd 'page' does not exist as a physical file you can open and edit. It is created programatically through the compiled code.
If you want to edit the output of the error list or error details pages, you will have to go to the source code and manipulate it there, and then recompile your custom version.
By the way, as some comments already mention, the errors page already refreshes itself through a meta-refresh (once every 60 seconds). You can change the number of errors displayed by manipulating the query string, if need be (elmah.axd?page=1&size=100) up to a max of 100.