Question

I'm trying to find about ALL the possible options that I can set in web.config. Surprisingly, I can't find this at all. I expected it to be somewhere inside MSDN.

I know I can technically add "anything" to web.config, what I'm looking for is the things that the .NET Framework "as shipped" uses.

In particular, right now I'm interested in the <mailsettings> section.
For example, in many examples I've found, I noticed that they set DeliveryMethod="Network". I'm really curious what other values this attribute can take.

Is there any document on all the attributes and all their values, and all the effects those have?

OTHER TIPS

The links contained in the previous answers have gone bad, but this SO question is the second Google search result I got for "asp.net web.config documentation".

In the hopes of aiding the next searcher who comes through here looking for the official documentation, here is an msdn.microsoft.com link that (as of November 28th, 2012) works just fine:

ASP.NET Configuration Settings

I also found this, specifically for the <mailsettings> section:

http://msdn.microsoft.com/en-us/library/w355a94k.aspx

This might be what you're after (not all in one page), but the top of the schema - drill down recursively to find it all :)

ASP.NET Configuration Settings

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top