Web Configuration File
Web Configuration File
EXPLANATION:
Configuration file is used to manage various settings that define a website. The
settings are stored in XML files that are separate from the application code.
Generally a website contains a single Web.config file stored inside the application
root directory. However there can be many configuration files that manage settings at
various levels within an application.
STEPS:
Step 1 : Create a New Text file using Notepad (or any text editor)
Step 2 : Create a Xml file as in the following source code
Step 3 : Save the file as webconfig.conf
Step 4 : Add the webconfig file to the website created using Visual Studio.Net
Step 5 : For changes in the webconfig file, Open the file in Text Editors (Notepad,
Wordpad etc.) and make necessary changes.
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
OUTPUT