Blazor template HTTP Error 500.24 - Internal Server Error : system.web/identity@impersonate is set to true

Viewed 942
2 Answers

If you do not have a web.config file you can simply add one by

right click the project and click add =>  new item
and from there select web configuration file and name it web.config

add the following lines in the web.config file

<?xml version="1.0" encoding="utf-8"?>
<configuration>


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

</configuration>
Related