Authentication mode in the ASP.NET application

How do you set authentication mode in the ASP.NET application?

- You can set authentication mode using web.config file.

Example:
<authentication mode="windows">
<authentication mode="passport">
<authentication mode="forms">

- It supports an 'OnAuthenticate' event that occurs during the authentication process.
- This event is used to attach a custom object that implements the 'IPrinciple' interface to the context.
ASP.NET windows authentication and form authentication
ASP.NET windows authentication and form authentication - Windows authentication uses windows account whereas form authentication maintains its own user list..
How do you impersonate the authenticated user in ASP.NET?
Impersonate the authenticated user in ASP.NET - Impersonation means delegating one user identity to another user...
Secured communication in ASP.NET
ASP.NET Secured communication - ASP.NET provides secured communication using Secure Sockets Layer. .
Post your comment