开发者

How Does the VS 2010 web.config work?

开发者 https://www.devze.com 2023-01-02 15:14 出处:网络
I am j开发者_运维知识库ust wondering in VS2010 the web.config is broken up into web.config web.debug.config

I am j开发者_运维知识库ust wondering in VS2010 the web.config is broken up into

web.config
web.debug.config
web.release.config

So from what I gathered is the web.config is just like the master template. So I am guessing in my debug I could put things like my local database where in my release one I would put my server database.

Now how does it know when to use the release version or debug version?

I also here that you can have more than 2. How does that work?


VS will use the debug version if you publish/run with the Debug configuration, and will use the Release version if you publish/run with the Release configuration. Also, if you add more build configurations, you can have web.config versions for each of those build configurations as well.

0

精彩评论

暂无评论...
验证码 换一张
取 消