Monday, 21 December 2015

How to use ASP.NET Login Controls

The most useful feature available in ASP.NET 2.0 is a suite of seven controls designed to simplify the applications that authenticate users. In Visual Studio 2005, these controls are located in the toolbox under the Login tab.
Login Control
These seven controls are as follows:
  1. Login : Allows the user to log in by entering a user name and password.
  2. CreateUserWizard : Allows the user to create a new user account.
  3. PasswordRecovery : Allows the user to retrieve a forgotten password.
  4. ChangePassword : Allows the user to change his or her password.
  5. LoginView : This displays the contents of a template based on the user’s login status.
  6. LoginStatus : If the user is logged in, displays a Logout link for the user to log out. If the user isn’t logged in, displays a Login link that leads to the application’s login page.
  7. LoginName: This displays the user’s login name if the user is logged in.

ASP.NET

Create Dynamic Pages using ASP.Net