ASP.NET configuration information is stored in XML-based text files. The Machine.config configuration file contains settings that apply to the whole computer. This file is located in the following folder:
SystemRoot\Microsoft.NET\Framework\VersionNumber\Config
Machine.config contains configuration settings for computer-wide assembly binding, built-in remoting channels, and ASP.NET. You can change the settings in the Machine.config file to modify the behavior of .NET programs on the computer.
The Web.config configuration files contain settings that are specific to an application. The settings in the Web.config file can override or modify the settings that are defined in parent folders, such as settings that are defined in the Machine.config file for the computer.
For more information about ASP.NET configuration files, visit the following Microsoft Web sites:
For additional information about the Web.config configuration file, click the following article number to view the article in the Microsoft Knowledge Base:
815179
HOW TO: Create the Web.config File for an ASP.NET Application