Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Last, you have to disable any default authentication in asp.net by turning the authentication mode to None in the <system.web> section

Code Block
     <authentication mode="None">
    </authentication>
    <authorization>
        <allow users="*"/>
    </authorization>

...