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.
Locate the
web.configfile in the root directory of your application (or create one if it does not already exist).Add an
<appSettings>element.Add
<add>child elements along withkey/valuepairs to the<appSettings>element as required.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 theConfigurationSettingsobject.
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 ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access