views:

17

answers:

2

i want to view the functions being called one after the other when i click on some web page ... obviously i have the code running on my local machine.. i have used Visual studio 2010 for the development.... is there a tool to do that where i can see which function is calling the other in VS 2010???? Apart from using breakpoints ....

A: 

I'm not sure if this is exactly what you want, but it's worth a look.

If you right click on a method name in the code window and select "View Call Hierarchy" (Ctrl+K, Ctrl+T) it will display the Call Hierarchy window (Ctrl+W, K) with the selected method as the root. This will allow you to browse the calls to and calls from the selected method.

It is a tree view, and by expanding the required nodes you can drill as far down the call hierarchy as you need to go.

Simon P Stevens
A: 

Runtime Flow can do it. To monitor ASP.NET you will need to use Customized Run as described in Quick Start.

Sergey Vlasov