gpt4 book ai didi

ASP.NET web.config : configSource vs. 文件属性

转载 作者:行者123 更新时间:2023-12-03 04:14:31 26 4
gpt4 key购买 nike

在 ASP.NET 应用程序的 web.config 文件中,配置的某些部分(例如 appSettingsconnectionStrings)支持属性 fileconfigSource

使用 file 属性和 configSource 属性有什么区别?什么时候应该使用哪个属性以及可以同时使用两个属性吗?

<?xml version="1.0"?>
<configuration>
<appSettings file="AppSettings.config">
</appSettings>
<connectionStrings configSource="ConnectionStrings.config">
</connectionStrings>
<!-- ... -->
</configuration>

最佳答案

文件属性

configSource 属性

file 属性指定一个包含自定义设置的外部文件,就像您在 web.config 文件的 appSettings 条目中所做的那样。同时,configSource 属性中指定的外部文件包含您为其声明 configSource 的部分的设置。例如,如果您使用页面部分的 configSource 属性,则外部文件将包含页面部分的设置。

The custom settings declared in the external config specified in the file attribute will be merged with the settings in the appSettings section in the web.config file. In the meanwhile, the configSource does not support merging, it means that you'll have to move the entire section settings into the external file.

http://www.codeproject.com/Messages/1463547/Re-difference-between-configSource-and-file-attrib.aspx

关于ASP.NET web.config : configSource vs. 文件属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6940004/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com