Hi,
What is Authentication in ASP.NET?
Thanks
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.
SenthilkumarPosted Mar 27, 2012, 12:21 AM
For more info:
http://msdn.microsoft.com/en-us/library/aa291347(v=vs.71).aspx
Jignesh TrivediPosted Mar 27, 2012, 12:00 AM
Authentication is the process of obtaining identification credentials such as name and password from a user and validating those credentials against some authority. If the credentials are valid, the entity that submitted the credentials is considered an authenticated identity. Once an identity has been authenticated, the authorization process determines whether that identity has access to a given resource.
please refer
http://www.codeproject.com/Articles/98950/ASP-NET-authentication-and-authorization
it is good article on how to set Authentication.
hope this help.
Satyapriya NayakPosted Mar 26, 2012, 11:45 PM
Authentication is the process of validating a user on the credentials (username and password) and authorization performs after authentication. After Authentication a user will be verified for performing the various tasks, It access is limited it is known as authorization.
Thanks