web.config 中有多个外部文件?

发布于 2024-10-23 15:55:16 字数 397 浏览 5 评论 0原文

我需要做这样的事情:

<appSettings>
  <add key="Three" value="NumberThree"/>    
</appSettings>
<appSettings configSource="One.config"/>
<appSettings configSource="Two.config"/>

这给了我一个错误:每个配置文件中的部分只能出现一次。

这有点糟糕:(只是想知道:有什么方法/设置我可以启用做某事像这样?(IIS7,.net 3.5SP1)

我对 web.config 的控制很少,无法修改现有的 appSettings 元素,只能添加新项目。

I need to do something like this:

<appSettings>
  <add key="Three" value="NumberThree"/>    
</appSettings>
<appSettings configSource="One.config"/>
<appSettings configSource="Two.config"/>

This gives me an error: Sections must only appear once per config file.

That kinda sucks :( Just wondering: Is there any way/setting I can enable to do something like this? (IIS7, .net 3.5SP1)

I have very little control of the web.config and can't modify the existing appSettings element, only add new items.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

等往事风中吹 2024-10-30 15:55:16

不确定这是否对您的特定场景有帮助。
查看 上的 file 属性

<appSettings file="Two.config">
  ...
</appSettings>

Two.config 中,您可以执行相同的操作以指向 One .config

Not sure if this will help for you particular scenario.
Have a look at the file attribute on <appSettings>

<appSettings file="Two.config">
  ...
</appSettings>

In Two.config you can then do the same to point to One.config

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文