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

发布于 2024-11-27 21:27:08 字数 623 浏览 0 评论 0 原文

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

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

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

Within an web.config-file in an ASP.NET-application some sections of config, like appSettings and connectionStrings, supports the attributes file and configSource.

What is the difference between using the file-attribute and the configSource-attribute? When should you use which attribute and can you use both?

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

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

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

发布评论

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

评论(1

扭转时空 2024-12-04 21:27:08

file 属性

configSource 属性

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

在外部配置中声明的自定义设置
file 属性将与 appSettings 中的设置合并
web.config 文件中的部分。与此同时,configSource
支持合并,这意味着您必须移动整个
将部分设置写入外部文件。

http://www.codeproject.com /Messages/1463547/重新区分-configSource-and-file-attrib.aspx

file attribute

configSource attribute

The file attribute specifies an external file containing custom settings like you do in the appSettings entry of the web.config file.
Meanwhile, the external file specified in the configSource attribute contains the settings for the section which you declare the configSource for. For example, if you use the configSource attribute of the pages section, then the external file will contain the settings for the pages section.

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

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