Problem on Publishing ASP.net app on IIS 7.5

30 11 2012

Hi all

I had a problem about publishing standart ASP.net 4.0 application in IIS 7.5. Once I publish via VS2010, and make new virtual directory and then converting the virtual directory into application, and loading the web via browser, error message appear. It said An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.

One thing that you should do is simple, just add the folowing code into your web.config file

<configuration>
    <system.webServer>
        <validation validateIntegratedModeConfiguration="false"/>
    </system.webServer>
</configuration>

 

That’s all folks


Actions

Information

Leave a comment