显示 500 内部服务器错误的完整详细信息
如何查看返回 500 内部错误的页面中的完整错误?
我看到的只是错误号和描述-内部服务器错误-没有错误详细信息的确切细节?
How do I see the full error in a page which returns 500 internal error?
All I see is the error number and description -internal server error- with no exact details of the details of the error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有多种方法可以实现此目的,但我建议设置 ELMAH。
它将通过堆栈跟踪记录异常并提供一个 Web 界面来查看它。
还有其他记录器 (log4net),您可以编写自己的日志记录 (
Exception.ToString( )
将提供追踪错误所需的大部分信息),但我发现 ELMAH 很容易上手。There are several ways to achieve this, though I would recommend setting up ELMAH.
It will log the exception with stack trace and provide a web interface to see it.
There are other loggers (log4net) and you can write your own logging (
Exception.ToString()
will provide most of the needed information for tracking down a bug), but I find ELMAH to be easy to get going.检查错误日志。它们所在的位置取决于您的服务器设置。
Check the error logs. Where they are located is dependent on your serer setup though.
如果错误发生在您的 ASP.NET 应用程序上,您可以捕获该错误并将其通过电子邮件发送给自己。
您可以在 Global.asax 文件中捕获错误...
G.
If the error is happening on your ASP.NET app, you can catch the error and email it to yourself.
You can catch the error in the Global.asax file...
G.