Customizing ASP.NET
Customers hosting websites on Windows Server can use the Microsoft
.NET Framework to write ASP.NET applications. There is no special
setup required.
Customizing ASP.NET using web.config
You can customize the behaviour of your ASP.NET applications by maintaining your own web.config configuration file. Configuration directives in your web.config file override the server or application defaults. Place your web.config file in whichever folder you want to customize. Placing it in the root folder of your ASP.NET application (which, by default, is the root folder of your website) will cause its settings to be applied to every subfolder below it. You can also have multiple web.config files in other folders, to customize the settings for different areas of your website. Note, however, that some web.config settings can only be changed at the application root level. Since web.config is a system file, the web server will prevent users from accessing and downloading it. For information on settings you can specify, be sure to read the following websites.- The ASP.NET web.config File Demystified
- Specifying Configuration Settings in web.config
- ASP.NET Configuration
- Configuration Overview
