在asp.net中的webconfig appSetting中添加多个相对路径

时间:2013-11-11 09:55:13

标签: asp.net

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

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

1 个答案:

答案 0 :(得分: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"); 

第二种选择是使用Custom Configuration Section。这将需要一些样板代码(如MSDN文档中所示),但您可以使用属性访问设置值,而不是使用settings["Key1"]等字符串来引用它们。