Trace.axd 的例外情况
我找不到有关跟踪 asp.net 的有用描述,所以我在这里问 - 如何将异常从控制器(或视图)发送到trace.axd,但没有其他?
I cant find useful description on tracing asp.net, so i am asking here - How do I send an exception from Controller (or View) to trace.axd but nothing else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要仅在trace.axd中显示跟踪信息,您应该在web.config中启用跟踪,设置pageOutput = false,并且不在特定页面上启用跟踪。 要将异常信息发送到跟踪,您需要在捕获异常时使用 Trace.Write。
To show trace information only in trace.axd you should enable tracing in the web.config, set pageOutput = false, and not enable tracing on specific pages. To send exception info to the trace you will need to use Trace.Write when you catch the exceptions.