Link to home
Start Free TrialLog in
Avatar of Pete2003
Pete2003

asked on

global.asax original function call

Hi Guys,

Pretty simple question, possibly more complicated answer.

Is there a way to find out exactly which of my functions caused the unhandeled exception? I know you see the exception stack but that goes down to the system libraries and functions. I need something that I can display on the screen so the guys in the other office can just send that function name to me.

Thanks
ASKER CERTIFIED SOLUTION
Avatar of tetorvik
tetorvik
Flag of Finland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Doesn't the stack trace give you what you need? That will tell you which function A throws the exception, which function B calls function A, which function C calls function B, and so on. You can find the function at the bottom of the chain of function calling
Avatar of Pete2003
Pete2003

ASKER

As I said in my original post I don't want to just look at the stack trace ... people in the field wan't know what to do with it ... I need to narrow it down for them.

tetorvik, that did the trick, thanks.