在运行时将值替换到 web.config 中
我们有一个在三个环境中运行的应用程序:开发、QA 和生产。该应用程序访问 SQL 服务器和多个 Web 服务。 web.config 文件包含 SQL 服务器的连接字符串和 Web 服务的 IP 地址。我们希望能够拥有一个适用于所有三种环境的 web.config 文件,但以某种方式为每种环境获取不同的数据。有谁知道有什么方法可以做到这一点?
We have an application that runs in three environments: development, QA, and production. The application accesses an SQL server and several web services. The web.config file has the connection string for the SQL server and the IP addresses of the web services. We would like to be able to have one web.config file that works in all three environments, but somehow picks up the varying data for each environment. Does anyone know of a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 Web.config转型。
Look at Web.config Transformation.
我们使用与您完全相同的配置选项,并且我们在 web.config 中创建了 3 个连接字符串,如下所示:
然后我们有一个静态方法,它基于 url 来确定要使用哪个 conn str:
您可能需要调整对您有用的方法。
We use the exact same config options as you, and we have created 3 connection strings in our web.config like this:
Then we have a static method that bases itself on the url to determine which conn str to use:
You may have to adjust the method to work for you.