Hi,
What is Difference Between Authorization and Authentication in ASP.Net
Thanks, in advance
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jiteendra SampathiraoPosted Aug 26, 2011, 3:39 AM
Suthish NairPosted Aug 26, 2011, 3:20 AM
Purushottam RathorePosted Aug 26, 2011, 2:02 AM
Dear Alok...
Please follow this link to learn more about Authentication and Authorization.
http://www.c-sharpcorner.com/UploadFile/shivprasadk/2513/
Satish BhatPosted Aug 26, 2011, 12:37 AM
Typically, authentication is achieved by the user sharing credentials that somehow verify the user's identity.
Authorization is the process of determining if an authenticated user has access to the resource(s) they requested.
Priya LingePosted Aug 26, 2011, 12:37 AM
Authentication:
Authentication is a process of identifying a user based on their credentials(means user id and password).
Authorization:
Authorization is process of determining whether an authenticated user is allowed to access a specific resource or not.
Asp.Net has 3 ways to Authenticate a User
1.Forms Authentication
2.Windows Authentication
3.Passport Authentication
Thanks.