I am facing weird issue in reading appSetting
from Web.Config
I always get null
.
Why so?
Web.config
<!-- Message setting-->
<add key="applicationType" value="release"/>
Code:
string applicationType = ConfigurationManager.AppSettings["applicationType"];
worth to mention here
Web.config is part of another project and i am trying to access it from another project,