1

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

3 Answers 3

2

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

Sign up to request clarification or add additional context in comments.

Comments

1

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

Comments

0

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?

1 Comment

In this particular case to find out how to avoid stack overflow in my custom site map provider. I was hoping that XmlSiteMapProvider could give me some insight, but I realized it is a subclass of StaticSiteMapProvider while I need something which is an immediate subclass of SiteMapProvider and doesn't depend on StaticSiteMapProvdier.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.