Anonymous access and NTLM authentication in IIS -


I have a server with IIS, and my site has some pages that require anonymous access and some pages On the Authentication Method screen in the "Integrated Windows Authentication" IIS, you can enable both "Integrated Windows authentication" and anonymous access, but the documentation I have read shows that you only have one or the other use Are spun.

Does anyone know how anonymous access is allowed on some pages and others require NTLM authentication?

Thank you,

You have to use it.

Authentication is required to create only specific folders, so you can get web.config in such subfolders with only the authorization element:

  & lt ; Configuration & gt; & Lt; System.web & gt; & Lt; Authority & gt; & Lt; Deny users = "?" / & Gt; & Lt; / Authorization & gt; & Lt; /system.web> & Lt; / Configuration & gt;  

Comments