Clear Web.Config file in Asp.NET 4.0?

Good,

I am wondering that the clear.config file may be nice, but you know that some common web hosting companies do not allow us to deal with things like machine.config, etc.

So, if a lot of things have been moved to machine.config, we will be allowed to change things like we used in the web.config file.

+1
source share
1 answer

Nothing changes in this regard with ASP.NET 4.0: the way the ASP.NET configuration model has always worked is that you can override the parameters in the machine.config file using web.config in the root of your site and then on in the subtitle directories.

, ASP.NET 4.0 , , , : http://weblogs.asp.net/scottgu/archive/2009/08/25/clean-web-config-files-vs-2010-and-net-4-0-series.aspx

+3

Source: https://habr.com/ru/post/1792931/


All Articles