显示 500 内部服务器错误的完整详细信息

发布于 2024-10-13 06:54:11 字数 76 浏览 5 评论 0原文

如何查看返回 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 技术交流群。

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

发布评论

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

评论(3

时光瘦了 2024-10-20 06:54:11

有多种方法可以实现此目的,但我建议设置 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.

冷默言语 2024-10-20 06:54:11

检查错误日志。它们所在的位置取决于您的服务器设置。

Check the error logs. Where they are located is dependent on your serer setup though.

第七度阳光i 2024-10-20 06:54:11

如果错误发生在您的 ASP.NET 应用程序上,您可以捕获该错误并将其通过电子邮件发送给自己。

您可以在 Global.asax 文件中捕获错误...

    Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
    ' Code that runs when an unhandled error occurs

    Dim sb As New StringBuilder
    sb.AppendFormat("Page Location: {0}", Context.Request.RawUrl)
    With Server.GetLastError.GetBaseException
        sb.AppendFormat("Message: {0}", .Message)
        sb.AppendFormat("Source: {0}", .Source)
        sb.AppendFormat("Method: {0}", .TargetSite)
        sb.AppendFormat("Stack Trace: {0}", .StackTrace)
    End With
    Dim ErrorMsg As String = sb.ToString()
    ' Post thee error to a logger...

End Sub

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...

    Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
    ' Code that runs when an unhandled error occurs

    Dim sb As New StringBuilder
    sb.AppendFormat("Page Location: {0}", Context.Request.RawUrl)
    With Server.GetLastError.GetBaseException
        sb.AppendFormat("Message: {0}", .Message)
        sb.AppendFormat("Source: {0}", .Source)
        sb.AppendFormat("Method: {0}", .TargetSite)
        sb.AppendFormat("Stack Trace: {0}", .StackTrace)
    End With
    Dim ErrorMsg As String = sb.ToString()
    ' Post thee error to a logger...

End Sub

G.

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