up vote 1 down vote favorite
share [g+] share [fb]

I can't seem to find any of my code behind files in the class view tab. I can see other classes that I have added but none of the code behind files. Is there a reason for this? I am missing a setting or something? It is quite irritating trying to navigate my way through the code all the time.

I can see all the other classes just fine just not my code behind files.

link|improve this question

What type of project is this? Website/Web application - Please clarify. – Cerebrus May 18 '09 at 16:51
It is a website project. – uriDium May 18 '09 at 17:02
For the record, this is the first Bounty question I've answered and I was concerned about this: stackoverflow.uservoice.com/pages/general/suggestions/…. Just making sure you're aware of this. ;-) – Cerebrus May 20 '09 at 6:40
What a pity to waste the remaining 50 points by not accepting an answer. Anyway, thanks. :-) – Cerebrus May 20 '09 at 17:02
Sorry about that.I must admit things have been crazy at work and at home. It has been a whirlwind of work, eat and sleep. I didn't have much time to do my pet projects otherwise I would have been here. Sorry again. – uriDium May 20 '09 at 17:27
feedback

4 Answers

up vote 6 down vote accepted
+50

Class View is intended to provide a hierarchical view of the "symbols" defined in your project. For website projects, it will only list the referenced assemblies and any classes defined in App_code.

So, no, you aren't missing a setting. You're missing the point of the Class View window ! ;-) Maybe you should be looking in the Solution Explorer instead.

BTW, if you're having trouble navigating through code files, you should consider better organizing your files (in folders, for instance).

Edit (after a Bounty has been placed on this question... drool! ) :


Okay, I have VS 2005 SP1. I tried the following cases:

a. Create New Website (VB or C#):

The Class View window is blank until you add an App_Code folder. When added, the Class View window displays any classes added to the App_Code folder and the default Project references (System, System.Web, etc). It does not however display any Page code-behind classes.

b. Create New Project -> Web -> ASP.NET WebApplication:

The Class View window auto-populates with the Project references and the Page code-behind classes. This happens before I added any folder containing class files.

I am not sure if you are familiar with the ASP.NET Web Application Projects. If not, you need to have the Service Pack for VS 2005 installed. You can get it here. Else, you can also install the Web Application Projects extension directly.

link|improve this answer
I can see the classes, I just can't see their outline. I want to see a summary of the methods and variables in that class. Maybe that is what I should have said. Where is the class outline view??? – uriDium May 9 '09 at 15:36
feedback

Don't be placing classes other than the class backing the page in code-behind. Place all other code in a separate library project or at the very least in the App_Code folder.

link|improve this answer
1  
I'd go further: don't use Website projects :) – Mehrdad Afshari May 9 '09 at 12:45
feedback

There should be a drop down menu right above the code. The left on is the classes in your open file and the right are members of the selected class.

A great way to navigate code in Visual Studio is with the right-click context menu's Go to Definition and Go to Declaration options.

You could also use Reflector on your assemblies to view the class/member hierarchy in a tree.

link|improve this answer
Hi. I found what you are talking about but that is rather irritating that I have to click a drop down. Is there no view that will display a complete list of variables and methods and clicking on it will take you to the place in the code. Similar to Eclipse's class outline view? – uriDium May 18 '09 at 17:05
uriDium, I think you'll find what you are looking for with Reflector (it's free). – scottm May 18 '09 at 22:08
feedback

VS 2008 improves the class view to what you want ... just saying.

Edit: Nevermind, VS2005 should do what you want as well. You can use the Object Browser as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.