Is there a way that I can trace every method, basically a line trace, in an asp.net web site in production environment?
I don’t want to go about creating db logging for every line – i see an intermittent error and would like to see every line called and performed by the website per user.
You can turn on ASP.Net Tracing ( Also Here ) to trace the basic event flow. Then use Trace.Write() to write your own trace markers.
You can also use the very popular Elmah project to track down those hard to find errors.