ASP.NET: What is the relationship between form authentication and membership?

As I understand it, "forms" are just a method of authenticating users. Is it correct?

But what "membership" I really do not know. I wrote a custom membership provider, but I still don’t see what “membership” is if I use a table of user tables and personalized roles.

So what are forms?

What is membership?

+4
source share
3 answers

Authentication of the “Form” uses the ability to use the form to authenticate the user through them by entering a username and password. This is different from Windows authentication.

"Membership" is a way of storing information from a specific user after authentication and login.

Hope this helps.

+1
source

Through “forms”, this means that we use a web form to facilitate authentication. Where, as a membership, a built-in way to verify and store user credentials is provided.

0
source

As far as I understand:

  • Forms are a method for identifying requests. it provides a mechanism for storing and checking authorization cookies in a secure way.
  • Membership is a “supported” form service that validates the credentials provided for SQL, ActiveDirectory, and others.
0
source

Source: https://habr.com/ru/post/1307634/


All Articles