views:

248

answers:

5

Anyone know of a good asp.net website documentation tool? There are a ton of them out there for classes, assembly's, dependencies, etc... but seemingly nothing decent for interface and control documentation

A: 

Take a look at DocumentX. It may offer what you're looking for.

Robert S.
A: 

If you follow the xml documentation method when documenting your code, you can pull all of the documentation out into one document. See MSDN Article for instructions
It does not matter whether or not you are using asp.net.

jle
+1  A: 

I use GhostDoc to document all of my code.

Jon Tackabury
Hey, why downvote this answer? +1
Nick
A: 

Try Sandcastle. It generates MSDN / NDoc style documentation (in HTML / CHM format) from XML documentation comments in your code, so it can be as detailed as you want to make it.

Nick
A: 

I used Doxygen which grabbed all my XML comments in a site I was working on at my last job. It produces several different formats, and creates inheritance maps. Its highly customizable.

phsr