我正在尝试从Orchard主题视图访问web.config中的AppSettings键/值。像这样:
@System.Configuration.ConfigurationManager.AppSettings["AccountID"]
我尝试这样做时遇到以下异常:
The type or namespace name 'ConfigurationManager' does not exist in the namespace 'System.Configuration' (are you missing an assembly reference?)
我检查过,Orchard.Web项目和我的自定义主题项目都引用了System.Configuration程序集。
我在这里做错了什么?