windows authentication vs forms authentication

后端 未结 4 2001
挽巷
挽巷 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:25

    Windows Authentication refers to authenticating against Windows user accounts on the box that the application is running on.

    Forms authentication is a stand alone method of authenticating in .NET forms that you can hook up to some other system, such as a database.

提交回复
热议问题