in Education by

Describe login Controls in ASP?

1 Answer

0 votes
by

The Login control provides the user interface to log a user into a web site. The Login control uses the Membership service to authenticate the user in your membership system. The default Membership service from your configuration file will be used automatically, however you can also set the Membership provider that you would like used as a property on the control.

The Login Control consists of,

  • Username Label and Textbox: Collects the string used to identify the user in the membership system.
  • Password Label and Textbox: Collects the password for the specified user. The textbox text is always obscured.
  • LoginButton: The button to submit the users request for authentication.
  • RememberMe: Configurable to display a checkbox giving the user the option to store a persistent cookie on the user's machine.
  • Title and Instruction: Text to orient and guide the user through the process.
  • Links: Configurable links to help, password recovery and user registration information.
  • Validators: Required field Validators for the username and password textboxes.

For Example,

  1. <asp:Login ID="Login1" runat="server" BackColor="#FFE0C0" BorderColor="Red" ></asp:Login>  

Related questions

0 votes
    What are the HTML server controls in ASP.NET?...
asked Apr 7, 2021 in Education by JackTerrance
0 votes
    What are the data controls available in ASP.NET?...
asked Apr 6, 2021 in Education by JackTerrance
0 votes
    Describe application state management in ASP.NET?...
asked Apr 7, 2021 in Education by JackTerrance
0 votes
    How can we improve the Performance of an ASP.NET Web Page?...
asked Apr 8, 2021 in Education by JackTerrance
0 votes
    What is Enterprise Library in ASP.NET?...
asked Apr 8, 2021 in Education by JackTerrance
0 votes
0 votes
    What is Data Cache in ASP.NET and how to use?...
asked Apr 8, 2021 in Education by JackTerrance
0 votes
0 votes
    What are the Navigations techniques in ASP.NET?...
asked Apr 8, 2021 in Education by JackTerrance
0 votes
0 votes
    Explain Cookie-less Session in ASP.NET?...
asked Apr 8, 2021 in Education by JackTerrance
0 votes
    What is the PostBack property in ASP.NET?...
asked Apr 8, 2021 in Education by JackTerrance
0 votes
0 votes
    What is cross-page posting in ASP.NET?...
asked Apr 7, 2021 in Education by JackTerrance
...