ASP.NET web.config:configSource 与文件属性
在 ASP.NET 应用程序的 web.config
文件中,配置的某些部分(例如 appSettings
和 connectionStrings
)支持属性 文件
和configSource
。
使用 file
属性和 configSource
属性有什么区别?什么时候应该使用哪个属性以及可以同时使用两个属性吗?
<?xml version="1.0"?>
<configuration>
<appSettings file="AppSettings.config">
</appSettings>
<connectionStrings configSource="ConnectionStrings.config">
</connectionStrings>
<!-- ... -->
</configuration>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
file
属性appSettings
部分的中。 配置上的 config
。保存 调用。configSource
属性appSettings
configSource
上指定的文件中配置。保存 调用。file
属性指定一个包含自定义设置的外部文件,就像您在 web.config 文件的 appSettings 条目中所做的那样。同时,
configSource
属性中指定的外部文件包含您为其声明 configSource 的部分的设置。例如,如果您使用页面部分的 configSource 属性,则外部文件将包含页面部分的设置。http://www.codeproject.com /Messages/1463547/重新区分-configSource-and-file-attrib.aspx
file
attributeappSettings
section.config
on a Configuration.Save call.configSource
attributeappSettings
configSource
on a Configuration.Save call.System.Configuration.ConfigurationErrorsException
is thrown if config source file does not exist.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 theconfigSource
attribute of the pages section, then the external file will contain the settings for the pages section.http://www.codeproject.com/Messages/1463547/Re-difference-between-configSource-and-file-attrib.aspx