Different types of configuration files provided by .NET framework - DOT.NET

Explain the different types of configuration files provided by .NET framework? - Machine configuration file, Application configuration file, Security configuration file.

The different types of configuration files provided by .NET framework are:

- enterprisesec.config which configures the enterprise-level security policies.
- security.config which configures machine-level security policies.
- machine.config which contains the installation settings.
- app.config or web.config which are used to modify the default settings of the machine.config file.
What is AppSetting section in Web.Config file? - DOT.NET
The element of a web.config file where connection strings, server names, file paths...
What is Dataset object? - DOT.NET
DataSet object can not directly interact with Database. A DataAdapter object needs to be created to refer to the connection that is created....
What are the various objects in Dataset? - DOT.NET
The DataSet class exists in the System.Data namespace. The Classes contained in the DataSet class are:.....
Post your comment