Può capitare che quando si aggiornata la propria web application in Asp.NET dal framework 3.5 al 4.0, al primo avvio IIS 7 può ritornare l’errore seguente:
An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.
In molti casi può bastare un semplice refresh del browser oppure un riavvio dell’istanza di IIS.
Se questo non dovesse bastare si può semplicemente inserire la seguente voce nel web.config ed il gioco è fatto:
<system.webServer>
<validation validateIntegratedModeConfiguration=”false” ></validation>
</system.webServer>