It is, I believe, an offset into the JIT'ed code - that is the native code.
If you have WinDbg you could disassemble the native code for Page_Load and
have a better idea of where the exception occured, but being native it is
sometimes difficult to map back the instruction to a specific line in C#/VB
or even IL. It would be easier to set the project options to "generate debugging
information" and have a line number to work from.
--
Scott
http://www.OdeToCode.com/blogs/scott/
> I'm sorry but I still don't get it. What does the numbers mean?
>
> For example, if a program with debug info throws an exception, it will
> print out a similar stack trace. But instead of a +prefixed number, it
> shows the line number where the exception occurred.
>
> However, if the program does not have debug info, it shows the
> +prefixed number instead. I would expect that the +prefixed number
> would carry the same type of information (i.e. line number). Even if
> debug info is not available, it should be something similar, like IL
> code offset in the methods, etc...
>
> Any ideas?
>