• web.config的奇淫巧技



     

    <connectionStrings configSource="db.config"/>


    外部文件db.config:

    <connectionStrings>
        <add name="DefaultConnection" connectionString="Data Source=(LocalDb)v11.0;Initial Catalog=aspnet-WebApplication1-20140304225906;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnet-WebApplication1-20140304225906.mdf"
          providerName="System.Data.SqlClient" />
        <add name="ReportServerTempDBConnectionString" connectionString="Data Source=.;Initial Catalog=ReportServerTempDB;Integrated Security=True"
          providerName="System.Data.SqlClient" />
      </connectionStrings>

    具体格式
    <节点名 configSource="配置文件路径"/>

    注意点
    1.如果指定了configSource,就以外部文件为准,web.config中connectionStrings下面的节点配置就无效了,即使web.config中connectionStrings下面的连接串节点没有删除掉也是无效的。

    2.外部文件的根节点必须与web.config中指定的节点相同(其实就是将该节点的配置移到外部文件中)

    3.一个节点只能指定一个外部配置文件,不能将多个节点的外部文件指定为同一个,如不能将connectionStrings与appSettings的configSource指定为同一个文件。


    节点的数据获取
    ConfigurationManager.GetSection("节点名");//返回的是一个节点对象

    假想:架设以后ASP.NET5跨平台,使用json当做配置文件,应该也可以同样实现吧!

  • 相关阅读:
    我的公众号:WebHub
    The Qt Resource System
    Node.js Streams:你需要知道的一切
    2019春招前端面试预测题!
    BeamNG.drive物理引擎评鉴
    EcmaScript对象克隆之谜
    死锁与囚徒困境的辩证关系
    停止学习框架
    qt5android
    opencvKmeans图像分割根据颜色
  • 原文地址:https://www.cnblogs.com/RainbowInTheSky/p/4495856.html
Copyright © 2020-2023  润新知