What is the Web.config file?
Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.
What is the Web.config file?
Rating:
The Web.config is an XML file that consists of a series of settings specific to an application. Whenever a new Web service project is created in Visual Studio .NET, the Web.config file is automatically created and added to the project. It contains a number of empty settings and text that explain each section and its use. Example of a minimal Web.config file is as follows:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
Add configuration setting here
</system.web>
</configuration>
Add the configuration settings of an ASP.NET application between the <system.web> and </system.web> lines.
Rating:
Was this information helpful?
Other articles
- What is the Web Setup Project?
- What is the Style attribute?
- What are the transaction attributes?
- What are the modes of MQDL.exe?
- What is a Proxy object?