我希望在我的web.config的system.web部分中分离Identity配置并将其放在一个单独的文件中,这样我就不必检查源代码管理所使用的用户名/密码
这可能吗?看起来文件属性对system.web部分不起作用,即使configSource属性可行,我也不希望将所有system.web配置部分放在不同的文件中。 / p>
有人可以帮忙吗?
谢谢!
答案 0 :(得分:0)
更多研究表明,虽然我们无法在configSource
部分使用file
或<System.Web>
属性,但您可以在其中的标记上使用它。
例如,我想将globalization
设置从web.config
移到globalization.config
,因此我们更改了我们的网络配置:
<system.web>
<globalization requestEncoding="utf-8" responseEncoding="utf-8" culture="auto" uiCulture="auto" />
<!-- Other settings removed -->
</system.web>
到这个
<system.web>
<globalization configSource="globalization.config" />
<!-- Other settings removed -->
</system.web>