...">

ASP.NET <path location = and authentication mode

Can someone tell me if it works <location path=when we install <authentication mode= "None" />?

+3
source share
2 answers
+1
source
<location path="Recovery">      //Path of the folder or form You want to allow
    <system.web>
        <authorization>
            <allow users="*" />
        </authorization>
    </system.web>
</location>

If you do not want to allow the unauthorized user type "?"

+1
source

Source: https://habr.com/ru/post/1795942/


All Articles