What is Authentication and Authorization in MVC?
Answers (1)
Add AnswerAuthentication is a process to validate a user’s identity. whether the user is registered or not to access particular data or web pages.
Authorization is a security mechanism that is used to find whether the user has access to a particular resource or not. The authorization will happen only after the authentication process.