RE: What is the difference between mechine.config and ...
Every asp.net application has web.cofig file. the settings given in this file is implied to that particular application only.But the settings given in machine.config file is implied to whole system.
RE: What is the difference between mechine.config and ...
machine.config is a system level configuration i.e it is applied on all application in o/s that the configuration is set where as in web.config it is applicable to only one application i.e each asp.net web application will contain atleast on web.config file
RE: What is the difference between mechine.config and ...
Machine.Config : Used to Store Machine Level Configuration which applies to all .net applications on particular machine.Web.Config:USed for the single application configuration to which the web.config file belongs.
RE: What is the difference between mechine.config and ...
Basically Machine.config file content the configuration setting for a particullar machine and Web.config file is used to store configure a particular web application. On any system there will be only one Machine.config file but Web.config file can number of time as per web application
RE: What is the difference between mechine.config and web.config?
The MACHINE.config file contains default and machnine-specific values for all supported setting. Machine setting are normally controlled by the system admin and app should never be given write access to it.An application can override most default values stored in the machine.config file by creating one or more web.config files.At min an app creates a WEB config file in its root folder. The web.config file is a subset of machine.config written according to the same XML achema.