[Tool] 配置文件之Web.config

时间:2021-12-31 01:33:13

开发人员工具:

  安装完vs后,(如2013:C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\Shortcuts\VS2013 开发人员命令提示)

 

1.加密和解密Web.config中连接字符串

  aspnet_regiis.exe可以对web.config中的连接串进行加密和解密.

[Tool] 配置文件之Web.config

aspnet_regiis.exe -pef "connectionStrings" "D:\GitOsc\Repos\Module.User\User\Module.User.Web"

aspnet_regiis.exe -pdf "connectionStrings" "D:\GitOsc\Repos\Module.User\User\Module.User.Web"

  个人觉得意义不大

  参考:http://www.cnblogs.com/Gyoung/p/3194467.html

 

2.继承配置文件

  配置文件是有继承关系的.

  参考:http://www.cnblogs.com/lxconan/p/aspnet-mvc-from-zero-webconfig.html

 

3.Optimization

  配置在ASP.NET MVC中使用压缩和合并功能

  参考:http://www.th7.cn/Program/net/201303/128749.shtml

  <system.web>
<compilation debug="false" targetFramework="4.5" />
<!--debug为true则禁用合并压缩功能-->
</system.web>