Basic authentication in ASP.NET MVC 5

前端 未结 7 1922
执念已碎
执念已碎 2020-12-07 13:58

What steps must be done to implement basic authentication in ASP.NET MVC 5?

I have read that OWIN does not support cookieless authentication, so is basic authenticat

7条回答
  •  借酒劲吻你
    2020-12-07 14:29

    An application of ours "accidentally" used basic authentication because of the following code in Web.config:

    
        
            
        
        ... other stuff
    
    

    The application is otherwise configured to use forms authentication. The browser authentication window popped up whenever normal forms authentication would otherwise have been used.

提交回复
热议问题