Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the official, extensive, complete documentation on web.config? [closed]

Tags:

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?

like image 827
Daniel Magliola Avatar asked Oct 17 '08 16:10

Daniel Magliola


People also ask

Where is the web config file located?

The Web. Config file is used to configure Oracle Web Application functionality. This file is typically installed in the c:\Inetput\wwwroot\WebApp directory.

Where is the web config in .net core?

config file location. In order to set up the ASP.NET Core Module correctly, the web. config file must be present at the content root path (typically the app base path) of the deployed app.

Where is Web config file in Visual Studio?

config file is located in the %SystemRoot%\Microsoft.NET\Framework\%VersionNumber%\CONFIG\ folder. The default settings that are contained in the Machine.


1 Answers

It all starts on http://msdn.microsoft.com/en-us/library/zeshe0eb(v=vs.100).aspx :

  • <system.web>
  • <system.web.extensions>
  • <appSettings>
  • <configSections>
  • <connectionStrings>
like image 61
Mark Cidade Avatar answered Oct 06 '22 09:10

Mark Cidade