Login controls vs Forms authentication - ASP.NET

What is the difference between login controls and Forms authentication?

Login controls are part of ASP. Net’s UI controls collection which allows users to enter their username and password to login to a website/application. They provide login solution without the need of writing code. They by default work with ASP.Net membership roles and forms authentication. Forms authentication on the other hand refers to the authentication type being used by an application. ASP.Net supports Forms Authentication, Integrated windows authentication and Custom authentication. One can however, change or configure the login controls to work with the authentication mechanism chosen and not just Forms authentication which is default.
What is Fragment Caching in ASP.NET?
ASP.NET - What is Fragment Caching in ASP.NET? - Fragment caching does not cache a WebForm, rather it allows for caching of individual...
What is partial classes in .net?
ASP.NET - What is partial classes in .net? - .Net2.0 supports the concept of partial classes which is unlike the concept of one class...
How to pass a querystring from an .asp page to aspx page
ASP.NET - Explain how to pass a querystring from an .asp page to aspx page - Yes you can do it using a hyperlink...
Post your comment