web.config 中有多个外部文件?
我需要做这样的事情:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
配置具有一组继承层次结构。
查看 ASP.NET 配置文件层次结构和继承。
编辑:另一则:
如何:使用位置设置配置特定目录。
Configurations have a set inheritance hierarchy.
Checkout ASP.NET Configuration File Hierarchy and Inheritance.
EDIT: Another one:
How to: Configure Specific Directories Using Location Settings.
不确定这是否对您的特定场景有帮助。
查看
上的file
属性在
Two.config
中,您可以执行相同的操作以指向One .config
Not sure if this will help for you particular scenario.
Have a look at the
file
attribute on<appSettings>
In
Two.config
you can then do the same to point toOne.config