Deniz Dogan
Deniz Dogan

Reputation: 26227

Finding ASP.NET source code

Where can I find source code for e.g. XmlSiteMapProvider and other "built-in" stuff for ASP.NET (3.5)?

Upvotes: 1

Views: 209

Answers (3)

stusmith
stusmith

Reputation: 14113

I'm not sure whether ASP.NET is included, but some parts of the .NET framework are linked to Source Server - you can then step into the framework code, almost as if it were your own. Here's an article to get you started:

http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx

Upvotes: 1

Alon Gubkin
Alon Gubkin

Reputation: 57149

You can use Reflector. It's free, portable and fast.

Upvotes: 2

this. __curious_geek
this. __curious_geek

Reputation: 43217

You can never find the source code of inbuilt controls due to the fact that they are compiled into assemblies that are part framework.

Why do you need the source?

Upvotes: 0

Related Questions