What is Authentication in ASP.NET?- Authentication is the process of verifying the user’s details and finds if the user is a valid user to the system or not.
- This process of authentication is needed to provide authority for the user. ASP.NET implements authentication through authentication providers.
- Each provider has OnAuthenticate event.
- It allows building a custom authorization scheme.
- It is the process of obtaining identification credentials such as name and password from a user and validating those credentials against some authority.
|