Ok I have to ask this: the site you are deploying, are you deploying it under the .1.1 framework or the 2.0 framework?
In 1.1 your config might look like this
<configuration>
<appSettings>
<add key="name" value="" />
</appSettings>
</configuration>
In 2.0 it might look like this:
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<appSettings>
<add key="name" value="value" />
</appSettings>
<connectionStrings>
<add name="dev" connectionString="..."/>
<add name="live" connectionString="..."/>
</connectionStrings>
================================================== =========
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
================================================== =========
http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile
================================================== =========