Error message page

  • Thread starter Thread starter tshad
  • Start date Start date
T

tshad

On a normal error message page that asp.net generates, you have the message,
the stack trace and few lines of code where the error was generated:

Line 172: <asp:TemplateColumn HeaderText="">
Line 173: <ItemTemplate>
Line 174: <asp:LinkButton ID="FullName" Text='<%#
Container.DataItem("ExceptionID")%>' OnClick="GetApplicantDetails_Click"
runat="server"/>
Line 175: </ItemTemplate>
Line 176: </asp:TemplateColumn>

I can get the message and the stack trace. But is the code lines stored in
the Exceptions object anywhere?

I would like to get this to put in my Custom error page and table where I am
tracking my errors.

Thanks,

Tom
 
Back
Top