0

如何在 asp.net web.config 文件的 appSetting 路径属性中指定多个相对文件路径。我的 appsetting 键位于两个不同的文件中。

<appSettings file="Web.User.config">
 </appSettings >  
4

1 回答 1

0

您不能为 appSettings 引用多个文件路径。appSettings 是一个部分,您不能拥有多个部分。但是,您可以添加一个与 appSettings 部分类似的新部分。例子:

<configuration>
      <configSections>
        <section name="CustomConfig" type="System.Configuration.NameValueFileSectionHandler, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      </configSections>
    ....
<CusTomConfig>
    <add key="Key1" value="Value1"/>
</CustomConfig>

然后,您可以通过以下方式访问该部分:

NameValueCollection settings = (NameValueCollection)ConfigurationManager.GetSection("CustomConfig"); 

第二种选择是使用自定义配置部分。这将需要一些样板代码(如 MSDN 文档中所示),但您将能够使用属性访问设置值,而不是使用诸如settings["Key1"].

于 2013-11-11T10:26:33.567 回答