I am referencing a class library from my web application. The class library has an app.config file and the web application, of course, has it's own web.config.
For some reason, when the class library executes the statement "ConfigurationSettings.AppSettings[<key>] ", it appears to be reading from the web.config rather than the app.config.
Has anyone else encountered this and found a solution? (other than putting all my config items into the web.config)
-Sheldon