I have a class library. I have referenced system.configuration.
Dim ConnectionStringSettings As ConnectionStringSettings = _
ConfigurationManager.ConnectionStrings(config("DefaultConnection"))
It keeps on saying that my connectionstring is empty.
The class library do not have web.config. I want to use the project's web.config where my dll resides. Why is it not seeing my web config file?
Go to the complete details ...