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 are the advantages of asp.net mvc framework? : asp.net mvc
What is the current version of asp.net?
What are the file extensions for razor views?
What is difference between asp state management and asp.net state management?
Explain client-side scripting?
What type of code, client-side or server-side, is found in a code-behind file of a Web page?
What is HTTPModule and HTTPcontext? What is the use of each?
What is difference between datalist and gridview?
What is master page in dtp?
Suppose you want an asp.net function (client side) executed on the mouseover event of a button. Where do you add an event handler?
Explain why datareader is useful?
What is session and application variable in asp net?
What is viewstate? What does the "enableviewstate” property do? Whay would I want it on or off?
Can more than one person use the same login?
What is asp.net file?