我正在尝试从 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 程序集。
我在这里做错了什么?