Reputation: 5201
I have a web site running in asp.net 3.5 and recently i had to build another web which i did in asp.net 4. while hosting the site(.net 4.0) under the one in 3.5, i am getting some config file issues, in the <configsection>
, i have understood from research that this is due to the machine.config being inherited in the site with .net 4.0, how to override machine config here,<clear/>
is not working.
Upvotes: 0
Views: 190
Reputation: 63244
You need to read every words of this Microsoft article to see what is side-by-side,
http://msdn.microsoft.com/en-us/library/vstudio/a99txfy5(v=vs.100).aspx
And then see what is the configuration you need to change,
http://www.asp.net/whitepapers/aspnet4/breaking-changes#0.1__Toc256770150
It is rather complicated, so you have to pay enough attention to every details.
Upvotes: 2