I have my appSettings defined in a separate configuration file called Appsettings.Dev.Config and I include this file inside my web.config , for example,
<appSettings configSource="ConfigFiles\AppSettings.Dev.config"/>
Let's say that one of the parameters in the file
<add key="MailerEmailAccount" value=" myemail@myserver.com " />
Can I access the value of the MailerEmailAccount parameter elsewhere in web.config? How?
floatingfrisbee
source share