When I deploy a web applicaion to a 2003 server my debug symbols are gone.
The debug information excludes the line numbers (the most important part).
I have <compilation debug="true" > in the web config.
I even tested it using a special error page.
Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
' Code that runs when an unhandled error occurs
Session("App_Error") = Server.GetLastError.ToString
Server.Transfer("error.aspx")
End Sub
Anyone else run into this or know how to correct it?
Thanks,
RTomes
The debug information excludes the line numbers (the most important part).
I have <compilation debug="true" > in the web config.
I even tested it using a special error page.
Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
' Code that runs when an unhandled error occurs
Session("App_Error") = Server.GetLastError.ToString
Server.Transfer("error.aspx")
End Sub
Anyone else run into this or know how to correct it?
Thanks,
RTomes