我使用configSource
元素的appSettings
属性引用我的网络应用设置:
<appSettings configSource="c:/settings/customer-settings.config"></appSettings>
我现在想使用Configuration对象以编程方式访问此路径:
Configuration config = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~");
但configSource
路径似乎不可用?
答案 0 :(得分:1)
尝试使用file
属性而不是configSource
。 configSource
要求您的配置位于应用程序路径中,而file
没有此限制。