如何访问位于另一个子文件夹中的Web.config

时间:2017-03-09 04:55:36

标签: asp.net wcf asp.net-web-api web-config connection-string

我有这样的文件夹结构。

  

\根

  \Sub1

        \Sub2

每个都有单独的Web.config文件。

是否有可能从Root文件夹访问Sub1中的Web.config?

提前致谢。

1 个答案:

答案 0 :(得分:0)

试试这个

ConfigurationFileMap fileMap = new ConfigurationFileMap("~/Root/Sub1/Web.config"); //Path to your config file
    Configuration configuration = ConfigurationManager.OpenMappedMachineConfiguration(fileMap);
    string value = configuration.AppSettings.Settings["sKey"].Value;