I have a web application that uses class library dlls. I cannot access the app.config value in the class library
How am I trying to access app.config :
ConfigurationSettings.AppSettings["conStr"].ToString();
this returns a null value
Also, when I try to use the ConfigurationManager , it says that no assembly link was found or missing.
using System.Configuration.
source share