Using Windows Authentication in ASP.NET
问题 I'm trying to use Windows Authentication in my ASP.NET application. Whenever I try to view the app it sends me to a login page. How can I make it work without having to manually login via the browser? web.config <system.web> <authentication mode="Windows"></authentication> <anonymousIdentification enabled="false"/> <authorization> <deny users="?" /> <allow users="*" /> </authorization> <customErrors mode="Off"></customErrors> <identity impersonate="true"></identity> <compilation debug="true"