Click here to Skip to main content
15,896,269 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi
I want to log the line number where the exception has occurred in global.asax.
I have used the following code to get the line number but returns 0 by default

C#
void Application_Error(object sender, EventArgs e) 
    { 
        // Code that runs when an unhandled error occurs
        Exception ex = Server.GetLastError();
        System.Diagnostics.StackTrace trace = new System.Diagnostics.StackTrace(ex, true);
        System.Diagnostics.StackFrame fm = new System.Diagnostics.StackFrame(true);
        string sline = trace.GetFrame(trace.FrameCount - 1).GetFileLineNumber().ToString();
     }


Note: The following code to get linenumber works fine when I tried within try catch block
Posted

1 solution

the result of Server.GetLastError() isn't the same as an exception. It is an ASPError object. Check this link:
http://msdn.microsoft.com/en-us/library/ms524942%28v=vs.90%29.aspx[^]

Good luck!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900