ASP.NET windows authentication and form authentication

List out the difference between windows authentication and form authentication.

Windows authentication uses windows account whereas form authentication maintains its own user list. Windows authentication is best suited for the application which is meant for a corporate users whereas form authentication is preferable for the applications which have diversified users from several places.
User lists for windows authentication are found in <authorization> element whereas in case of form authentication, lists are there in <credential> element of web.config file.
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. .
Globalization and Localization in ASP.NET
ASP.NET Globalization and Localization - Localization is the process of adapting a software application for a specific locale.....
Post your comment