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
What is difference between URL and URI?
What are themes and skins in 2.0, explain usage scenario?
In which event are the controls fully loaded?
Am not able to move the controls on the form freely in asp.net 3.5 even though I selected the position as relative or absolute for those controls. What should I do to overcome this?
What parameters can you pass in the url of the api?
What is a runtime version?
What is the viewstate in asp.net?
What is asp.net caching?
What is query string? What are its advantages and limitations?
Where can I get the details on migration of existing projects using various technologies to asp.net?
explain code with datachaching with example
What is Web API?
Less than one page, how many windows will you be able to maintain?
What does asp in asp.net stand for?
How to store checkbox value in database in asp.net mvc? : Asp.Net MVC