views:

1396

answers:

3

I have a server set up with IIS, and my site has some pages which should allow anonymous access and some pages which should require the "Integrated Windows authentication". On the Authentication Method screen in IIS it looks like you can enable both "Integrated Windows Authentication" and anonymous access, but the documentation I've read seems to indicate you can only use one or the other.

Does anyone know how to allow anonymous access to some pages and require NTLM authentication on others?

Thanks,

+1  A: 

You have to use the authorization section in web.config.

To make only specific folders require authentication, you can have web.config with only the authorization element in subfolders like so:

<configuration>
   <system.web>
      <authorization>
         <deny users="?" />
      </authorization>
   </system.web>
</configuration>
Daniel Schaffer
+1  A: 

Enabling both Anonymous Access and Windows Authentication means it will try Anonymous Access first, if that fails it will fall back to Windows Authentication. If you need to do both, you can either do as suggested with the web.config, or put the pages that need protection in a sub-folder in IIS, and enable only windows authentication on that.

Sam Cogan
A: 

its is not like this...

I am using windows authentication for the site. and want to give anonymous access to one page in root directory.

Manish Jain