Error Report:
HTTP Error 500.22 – Internal Server Error
An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.
While access vb based application it is giving error.
HTTP Error 500.22 – Internal Server Error
An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.
Solution:
– Open web.config file.
– enter the following code in the configuration file.
<system.webServer>
<validation validateIntegratedModeConfiguration=”false” />
</system.webServer>
– Save the web.config file.Now check the website.
– If you are still facing the same issue change the application pool from Integrate mode to classic.Restart the service.
Tags:web.conf.Asp.net,c#,VB,WEb.config error,500.22 error,load page error.
Add Comment