vote up 0 vote down star
Something like what? – ck Mar 2 at 16:25
I think he's talking about defining variables to use in appSettings keys directly within configuration files. – Tyalis Mar 2 at 16:37
Can a moderator please delete this post ? The correct one is in: stackoverflow.com/questions/603009/… – DeeStackOverflow Mar 2 at 17:23

5 Answers

vote up 3 vote down

Inside <appSettings> Tou can create application Keys

<add key="KeyName" value="Keyvalue"/>

Later on you can access these values using:

ConfigurationManager.AppSettings["Keyname"]
link|flag
To use the ConfigurationManager class you need to add a reference to System.Configuration and add a using statement for System.Configuration (imports in VB) – ck Mar 2 at 16:28
The indication is correct but isn't an answer to the asked question. – Tyalis Mar 6 at 14:12
vote up -1 vote down

I don't think you can declare and use variables to define appSettings keys within a configuration file. I've always managed concatenations in code.

link|flag
vote up 0 vote down

I'm struggling a bit with what you want, but you can add an override file to the app settings then have that override file set on a per environment basis.

<appSettings file="..\OverrideSettings.config">
link|flag
vote up 0 vote down

In short, no, there's no variable interpolation within an application configuration.

You have two options

  1. You could roll your own to substitute variables at runtime
  2. At build time, massage the application configuration to the particular specifics of the target deployment environment. Some details on this at dealing with the configuration-nightmare
link|flag
vote up 0 vote down

Can somebody delete this post ? This did not go through correctly and the correct revised post is in http://stackoverflow.com/questions/603009/variables-within-app-config-web-config-revised-post.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.