Config文件中的AppSettings不能超过一个

时间:2016-02-24 08:50:28

标签: asp.net configuration

我希望从另一个配置文件到主配置文件(web.config)有一些参考,但是当有两个 <appSettings file="ReferenceURL"> 时,我总是会收到此错误在web.config中。

例如:

的web.config

< configuration >
< configSections />
< appSettings file="Forgot.config">
< appSettings file="Login.config">
< /configuration>

Forgot.config

< appSettings >
< add key="Name" value="Value">
< add key="Name" value="Value">
</appSettings >

login.config中

< appSettings >
< add key="Name" value"Value">
< appSettings >

每当我想尝试运行程序时,我总是遇到这个错误:

Sections must only appear once per config file. See the help topic < location > for exceptions.

我之所以得到2个不同的配置文件,但在上面的示例中得到相同< appSettings >,是因为其中一个仅用于 “忘记密码页” ,其余部分仅用于 “登录页面” ,并保留 “web.config” 整洁干净,易于阅读。

有什么方法可以实现这个目标吗?

你的回答非常感谢。

感谢。

0 个答案:

没有答案