c# - Enable intranet web application to all signed Windows users -
i have asp.net app. needs available signed windows user on local network. @ moment user enters site identify him windows name. anonymous users not allowed.
what have: in web.config:
<system.web> <authentication mode="windows" /> <authorization> <allow users="*"/> <deny users="?"/> </authorization> </system.web>
in applicationhost.config
iis express:
<authentication> <anonymousauthentication enabled="false" username="" /> <windowsauthentication enabled="true"> <providers> <add value="ntlm" /> </providers> </windowsauthentication> </authentication>
currently having issue if getting "authorization required" form in browser instead of getting app. suggestions?
there guess, problem more iis version/settings project itself.
Comments
Post a Comment