9.2. Adding Custom Application Settings in web.config

Problem

You have custom configuration information for your application that you would like to store in its web.config file.

Solution

Modify the web.config file for your application by adding an <appSettings> section to contain the custom configuration settings.

  1. Locate the web.config file in the root directory of your application (or create one if it does not already exist).

  2. Add an <appSettings> element.

  3. Add <add> child elements along with key/value pairs to the <appSettings> element as required.

  4. In the code-behind class for your ASP.NET page, use the .NET language of your choice to access the <appSettings> key/value collection through the ConfigurationSettings object.

Example 9-1 through Example 9-4 show the sample code we’ve written to implement this solution. Example 9-1 shows our web.config file with some key/value pairs. Example 9-2 shows the .aspx file for a web form that displays the configuration settings. Example 9-3 (VB) and Example 9-4 (C#) show the code-behind class that accesses the configuration settings using the ConfigurationSettings object.

Discussion

ASP.NET lets you add and then access configuration information specific to your application to the web.config file by means of a special <appSettings> element. You can add application configuration information by adding an <add> child element for each parameter, setting the key attribute to the name of the configuration parameter, and then setting the value attribute to ...

Get ASP.NET Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.