I have been working on many projects developed in ASP.Net MVC by someone else. A lot of time I want to see which controllers & actions were called during a page load while debugging something. Normally I would just set a breakpoint in the controller and then go from there to the views to see if it contains any RenderAction / RenderPartial methods etc. and then set a breakpoint there also. What I am interested in finding out is if there is any tool or way that can show me all the controllers and actions that were called. Ideally I would want to click on some hyper link or just do a page refresh and see a list of each controller & action that was called in sequence. This would be awesome in debugging!
Asked
Active
Viewed 1,352 times
2 Answers
2
You could use Glimpse, this is an open source to diagnostics platform for web.
Extensions for MVC and Web forms: http://getglimpse.com/Extensions/
Documentation: http://getglimpse.com/Docs/
Hope this will help.

Kundan Singh Chouhan
- 13,952
- 4
- 27
- 32