What is the difference between Windows authentication and Forms authentication?
September 5, 2010 by bigboss · Leave a Comment
Filed under: .NET Interview Questions, ASP.NET Interview Questions
Filed under: .NET Interview Questions, ASP.NET Interview Questions
The difference between Windows authentication and Forms authentication is that in Forms authentication your application performs all the authentication and authorization tasks. You must create Web forms and write code to collect user names and passwords and to check those items against a list of authorized users.
What happens when someone accesses a Web application that uses Forms authentication?
When someone accesses a Web application that uses Forms authentication, ASP.NET displays the logon Web form specified in Web.config. Once a user is authorized, ASP.NET issues an authorization certificate in the form of a cookie that persists for an amount of time specified by the authentication settings in Web.config.
.NET Interview Questions Set I
- What is Difference between NameSpace and Assembly?
- If you want to view an Assembly how do you go about it?
- What is Manifest?
- Where is version information stored of an assembly?
- Is versioning applicable to private assemblies?
- What is GAC?
- what is the concept of strong names?
