views:

190

answers:

5
+2  A: 

NDepend comes to the rescue. But it targets large code bases and costs some money.

Daniel Brückner
A: 

I wrote a tool (blog, website) which analyzes aspx source files. It might help in your case.

devio
+7  A: 

NDepend is a very good tool.. This may help as well.. .Net Reflector by Red gate with some of the following plugins...

http://www.codeplex.com/reflectoraddins

Aim Kai
+1 for NDepend....
Richard Ev
ditto; my favourite tool :)
Joel in Gö
+5  A: 

You could try some Reflector's add ins, like SequenceViz and AutoDiagrammer. See the full list here.

Fernando
Why the down vote?
Fernando
+1  A: 

If you can take a copy of the project, and load it up on Visual Studio 2010, there is a "Generate Sequence Diagram" option at the method level -- you can see the call tree for calls below the method that you are on.

JMarsch
Hi JMarsch, I loaded up VS 2010 Ultimate RC but couldn't find what you suggested even after playing around with it. Thanks for the suggestion away, cheers!
N_R
I haven't tried it with an ASPX application, so maybe that's the problem. Here's where to find it: In the Code Editor, right-click on a method name. In the context menu "Generate Sequence Diagram..." is the fourth item from the top.
JMarsch