Types of authentication - ASP.NET Security

Q.  How many types of authentication ASP.NET supports?
- Published on 24 Jul 15

a. Windows Authentication.
b. .NET Passport Authentication.
c. Forms Authentication.
d. All of the above.

ANSWER: All of the above.
 

    Discussion

  • Shiva   -Posted on 21 Sep 15
    The ASP.NET Framework supports three types of authentication:
    • Windows Authentication
    • NET Passport Authentication
    • Forms Authentication

    Windows authentication
    It is enabled by default. When Windows authentication is enabled, users are identified by their Microsoft Windows account names.
    .NET Passport authentication
    It is a centralized service provided by Microsoft. .NET Passport allows users to create a single sign-in name and password to access any site that is uses .NET Passport authentication
    Passport simply tells a participating site who the user is. MSN and Hotmail uses .NET Passport authentication.
    Forms authentication
    In this authentication users are typically identified by a cookie. When a user is authenticated, an encrypted cookie is added to the user’s browser. As the user moves from page to page, the user is identified by the cookie.

Post your comment / Share knowledge


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)