ASP.NET“黄色死亡屏幕”如何显示代码?

时间:2008-08-21 15:14:45

标签: .net asp.net yellow-screen-of-death

我认为.Net代码被编译成MSIL,所以我总是想知道黄色屏幕是如何产生错误的代码的。如果它正在执行已编译的代码,编译器如何能够在错误消息中从源文件生成代码?

随意编辑这个问题/标题,我知道这没有用。

5 个答案:

答案 0 :(得分:9)

使用包含字节码的元数据编译.Net程序集,该元数据允许轻松反编译代码 - 这就像.Net Reflector之类的工具一样。 PDB文件只是调试符号 - 黄色死亡屏幕的区别在于您将在堆栈跟踪中获得行号。

换句话说,即使PDB文件丢失,您也会得到代码。

答案 1 :(得分:5)

像这样。我做了一些改动,但它与ms正在做的非常接近。

// reverse the stack
private static Stack<Exception> GenerateExceptionStack(Exception exception)
{
    var exceptionStack = new Stack<Exception>();

    // create exception stack
    for (Exception e = exception; e != null; e = e.InnerException)
    {
        exceptionStack.Push(e);
    }

    return exceptionStack;
}

// render stack
private static string GenerateFormattedStackTrace(Stack<Exception> exceptionStack)
{
    StringBuilder trace = new StringBuilder();

    try
    {
        // loop through exception stack
        while (exceptionStack.Count != 0)
        {
            trace.Append("\r\n");

            // render exception type and message
            Exception ex = exceptionStack.Pop();
            trace.Append("[" + ex.GetType().Name);
            if (!string.IsNullOrEmpty(ex.Message))
            {
                trace.Append(":" + ex.Message);
            }
            trace.Append("]\r\n");

            // Load stack trace
            StackTrace stackTrace = new StackTrace(ex, true);
            for (int frame = 0; frame < stackTrace.FrameCount; frame++)
            {
                StackFrame stackFrame = stackTrace.GetFrame(frame);
                MethodBase method = stackFrame.GetMethod();
                Type declaringType = method.DeclaringType;
                string declaringNamespace = "";

                // get declaring type information
                if (declaringType != null)
                {
                    declaringNamespace = declaringType.Namespace ?? "";
                }

                // add namespace
                if (!string.IsNullOrEmpty(declaringNamespace))
                {
                    declaringNamespace += ".";
                }

                // add method
                if (declaringType == null)
                {
                    trace.Append(" " + method.Name + "(");
                }
                else
                {
                    trace.Append(" " + declaringNamespace + declaringType.Name + "." + method.Name + "(");
                }

                // get parameter information
                ParameterInfo[] parameters = method.GetParameters();
                for (int paramIndex = 0; paramIndex < parameters.Length; paramIndex++)
                {
                    trace.Append(((paramIndex != 0) ? "," : "") + parameters[paramIndex].ParameterType.Name + " " + parameters[paramIndex].Name);
                }
                trace.Append(")");


                // get information
                string fileName = stackFrame.GetFileName() ?? "";

                if (!string.IsNullOrEmpty(fileName))
                {
                    trace.Append(string.Concat(new object[] { " in ", fileName, ":", stackFrame.GetFileLineNumber() }));
                }
                else
                {
                    trace.Append(" + " + stackFrame.GetNativeOffset());
                }

                trace.Append("\r\n");
            }
        }
    }
    catch
    {
    }

    if (trace.Length == 0)
    {
        trace.Append("[stack trace unavailable]");
    }

    // return html safe stack trace
    return HttpUtility.HtmlEncode(trace.ToString()).Replace(Environment.NewLine, "<br>");
}

答案 2 :(得分:3)

我相信在执行调试版本时输出的pdb文件包含对源代码文件位置的引用。

答案 3 :(得分:0)

我认为这取决于编译程序集中可以包含的调试信息..(虽然我肯定是错误的)

答案 4 :(得分:0)

我相信将源映射到MSIL的信息存储在PDB文件中。如果不存在,则不会发生该映射。

正是这种查找使异常成为如此昂贵的操作(“例外情况适用于特殊情况”)。