Hosting Articles Technical Articles

web.config validateIntegratedModeConfiguration

Error:

web.config validateIntegratedModeConfiguration

Description:

After update the ASp files in the server it is display validateIntegratedModeConfiguration error in web.config file.

web.config validateIntegratedModeConfiguration
Solution:

– Open web.config file.

– Find the below code in web.config file,

<system.webServer>
<!– Disable runtime rejection of Integrated mode applications that have legacy ASP.NET settings –>
<validation validateIntegratedModeConfiguration=”false”/>
<defaultDocument>
<files>

– Change the above code to below mention one.

<system.webServer>
<!– Disable runtime rejection of Integrated mode applications that have legacy ASP.NET settings –>
<validation validateIntegratedModeConfiguration=”false” />
</system.webServer>

<location inheritInChildApplications=”false”>
<system.webServer>
<defaultDocument>
<files>

– Afer that save the file and restart application or domain services.

Tags:ASP,ASP.net.ASp.net code,web.confog file,Hosting issue,Hosting.

About the author

admin

Add Comment

Click here to post a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.