| John A Grandy 2006-06-12, 1:24 pm |
| The following makes no sense to me ... what am I misunderstanding ?
----------------------------------------------------------------------
web.config
<configuration>
<system.web>
<authentication mode="Windows"></authentication>
IIS Web Site properties - check "Anonymous access" , check "Integrated
Windows authentication"
perform iisreset
http://localhost successful
----------------------------------------------------------------------
web.config
<configuration>
<system.web>
<authentication mode="None"></authentication>
<authorization>
<allow users="*"/>
</authorization>
IIS Web Site properties - uncheck "Anonymous access" , check "Integrated
Windows authentication"
perform iisreset
http://localhost give error :
"Security permissions are misconfigured on this machine. Turn off anonymouse
access, turn on NTLM, and protect the directory with permissions to restrict
access to authorized people only."
----------------------------------------------------------------------
|