vote up 8 vote down star
9

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'm expecting it to be somewhere inside msdn.microsoft.com)

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?

Thanks!

flag

69% accept rate

4 Answers

vote up 11 vote down check

It all starts on http://msdn.microsoft.com/en-us/library/zeshe0eb.aspx :

link|flag
Thank you very much. You rock. – Daniel Magliola Oct 17 '08 at 16:52
Thanks for plowing through that frustrating MSDN forest for us! – DOK Oct 18 '08 at 19:47
vote up 0 vote down

That's like asking where is the official documentation for *.txt files. It depends on the web site they are supposed to configure. Every app can have its own custom config sections, and in fact, most do.

link|flag
Do you think your answer is adding value to the discussion here? Perhaps you would benefit from reading through a few more questions and answers before you start putting people down for asking questions. See how many people have responded? – DOK Oct 18 '08 at 19:51
"putting people down for asking questions"?????? Wuh? How did I do that? I was hoping to point out that web.config is a generic solution to common problem and asking what does it contain is a loaded question. Sorry if it came across as condescending, but quite frankly, I don't see how. – dviljoen Oct 23 '08 at 17:27
vote up 0 vote down

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

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

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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