What are various authentication mechanisms in ASP.NET ?
Answer Posted / mohini nalawade
Authentication
Authentication refers to the method used by the server to
verify the clients’ identity. This feature provides methods
to authenticate clients via a set of standardized and
reusable methods that require little or no modification.
The methods available to developers are:
None – This method does nothing.
Windows Authentication – Attempts to verify users by
validating supplied credentials using authentication
methods used by the Windows operating system. This includes
NTLM (NT LanMan) and Kerberos (for systems running versions
more current than Windows NT 4.0). Windows authentication
is used by default if no method is explicitly selected.
IIS Authentication – Uses authentication methods provided
by the IIS Web server.
Passport Authentication – Verifies users through the use of
the Microsoft Passport authentication server.
Forms Authentication – Allows for application developers to
provide a form for authenticating users in a standardized
way. User accounts can be made specific to the application
and stored in the web.config file.
| Is This Answer Correct ? | 12 Yes | 4 No |
Post New Answer View All Answers
How to you can limit Access to Web API to Specific HTTP Verb?
Which object encapsulates state or data of a user?
What is manifest in .net framework?
In early binding will the method invoked on com component will verify it?s existance in the system or not ?
What is the postback property in asp.net?
What is the difference between equals() and == in c#?
What are the differences between code behind and code inline?
What is postback request?
What is ViewState? What does the "EnableViewState" property do? Why would I want it on or off?
Describe state management in asp.net?
Explain what are delegates?
What are different methods of session maintenance in asp.net?
Why web api is better than wcf?
What is an asp.net web form?
What are the different session state management options available in asp.net?