We have a .NET 2.0 application which we normally run on IIS6, and used to run fine on IIS7, but recently after installing SP1 for Vista IIS7 seems to be choking on a line in the Web.Config file:
<system.web AllowLocation='true'>
Is it safe to remove the AllowLocation attribute? What does this attribute do?
From MSDN:
The default value is true, so you should be able to remove it with no effect on your application.