windows authentication vs forms authentication

后端 未结 4 1957
挽巷
挽巷 2021-02-04 01:46

I am trying to understand concepts of windows authentication, forms authentication and their differences. I am confused. Can someone help me in clarifying this.

Thanks.

4条回答
  •  北海茫月
    2021-02-04 02:20

    It's pretty simple. Windows Authentication makes use of the Windows Login system. http://en.wikipedia.org/wiki/Integrated_Windows_Authentication

    And with Forms Authentication the user will need to provide a username and password manually. http://www.asp.net/web-forms/tutorials/security/introduction/an-overview-of-forms-authentication-vb

    The Forms Authentication also allows you to choose where you access the login data from. It could for example be stored in your own local database. While Windows Authentication is only going to use your Windows login data. This data usually comes from Active Directory, if your network is built using an enterprise/buisness/domain setup. http://en.wikipedia.org/wiki/Active_Directory

提交回复
热议问题