Difference between Authentication and authorization.

Difference between authentication and authorization.

AuthenticationAuthorization
It is the process of verifying the identity of a user.It is the process of checking whether the user has the access rights to the system.
It always proceeds to authorization.It is the process of allowing an authenticated user access to resources.
It has two separate levels because all the requests coming through the IIS before it is handled.It allows two ways to authorize the access to a given resources.
They have additional schemes like windows authentication, forms authentication and passport authentication.The two ways are URL authorization and File authorization.
What is impersonation in ASP.NET?
ASP.NET can also impersonate a specific account you specify in web.config...
What is event bubbling in .NET?
The passing of the control from the child to the parent is called as bubbling....
Describe how the ASP.NET authentication process works.
ASP.NET runs inside the process of IIS due to which there are two authentication layers which exist in the system.....
Post your comment