Include Multiple .Config Files in ASP.NET Web Application
Explains how to include multiple .config files to make ASP.NET Web application more secure and manageable. Microsoft ASP.Net provides a configuration system that can be used to keep our applications flexible at run-time.
Visit publisher site: Include Multiple .Config Files in ASP.NET Web ApplicationListing Details
- Version:
- 1
- Filed in:
-
Scripts / ASP.NET / Tutorials & Tips
- Submitted on:
- Last Updated:
- Feb 11, 2009
- Publisher:
- Richard Bean Other listings by this publisher
License & Pricing Information
- License Type:
- Freeware
- Price:
- $0.00 USD
- Additional Info:
User Reviews
Add/Edit Your ReviewDisplaying 1-1 out of 1 reviews
-
For this we need to change the "appSettings" section of the machine.config file. in this section we have an attribute "allowDefinition". 1.if it is set to "MachineOnly" then we cant override "appSettings" section in our web.config of the root folder. 2. if it is set to "MachineToApplication" then we can override in our root web application folder. 3. if it is omitted then we can override in multiple folders that is seperate web.config file for each folder. Thanks Ali Akbar Mohammed