October 2010
Intermediate to advanced
1920 pages
73h 55m
English
ASP.NET uses a hierarchical system of configuration. At the top of the hierarchy is the Machine.config file. This file contains all the default configuration settings for ASP.NET applications and all other types of applications built with the .NET Framework.
The Machine.config file is located at the following path:
\WINDOWS\Microsoft.NET\Framework\[version]\CONFIG\Machine.config
This same folder also contains a Web.config file. The Web.config file contains settings that serve as defaults for all ASP.NET applications running on the machine. The Web.config file overrides particular settings in the Machine.config file.
The \CONFIG folder includes the following six files:
• Machine.config—
Contains the actual ...