当前位置 : 主页 > 网络编程 > ASP >

asp.net管理多个web.config文件

来源:互联网 收集:自由互联 发布时间:2021-06-24
任何人都可以建议一个管理多个web.config文件的好方法吗? 例如,我有一个开发web.config,我在我的localmachine上使用名为“localWeb.config”,然后我用于生产的名为“prodWeb.config”.我保留.confi
任何人都可以建议一个管理多个web.config文件的好方法吗?

例如,我有一个开发web.config,我在我的localmachine上使用名为“localWeb.config”,然后我用于生产的名为“prodWeb.config”.我保留.config扩展名,因此没有人可以从Web服务器访问它们.

例如,localWeb.config将具有到开发数据库的连接字符串,而prodWeb.config有一个到生产数据库的连接字符串.

目前,我正在使用postbuild事件将localWeb.config或prodWeb.config的内容复制到web.config.这很好,但我想知道是否有人知道更好的方法.

查看 Web Deployment Tool:

Here are just a few of the tasks that
be accomplished using the tool:

  1. Create a package that contains content, configuration and SQL
    databases for deployment or sharing
    with others.

  2. Use the package as a way to version your application or create backups.

  3. Add parameters to replace a connection string or other value in a
    file during install of a package.

  4. Enable non-administrators to deploy packages and granularly control their
    access.

  5. Synchronize or migrate both sites and servers running IIS 6.0 and IIS 7.0.

网友评论