Exam 70-553 - Use login controls to control access to a Web application.

Section 2

  • Part 6
    • Topic 3

 

Use login controls to control access to a Web application.

  • Use the Login Web server control.
  • Use the LoginView Web server control to view a user's login status.
  • Use the PasswordRecovery Web server control to allow a user to recover a password.
  • Use the LoginStatus Web server control to display either a login or logout link.
  • Use the LoginName Web server control to display a user's login name on a Web page.
  • Use the CreateUserWizard Web server control as a UI for creating new Web application user accounts.
  • Use the ChangePassword Web server control to allow users to change their passwords.
  • Specify the membership provider used for logging on.
  • Configure a mail server so that login controls can be used to send e-mail messages to users.

Summary

To configure the membership provider used for logging in, you must modify the web config to use forms authentication specifiying the url for log in. You must also add an entry into the membership providers node in your web config that uses a ConnectionString also specified in your web config.

The paragraphs below are taken from the msdn article “ ASP.NET Login Controls Overview” listed in the resources:

The ASP.NET login controls work together to provide a robust complete login solution for your ASP.NET Web applications that requires no programming. By default, login controls integrate with ASP.NET membership to help automate user authentication for your Web site.

The Login control displays a user interface for user authentication. The Login control contains text boxes for the user name and password and a check box that allows users to indicate whether they want the server to store their identity using ASP.NET membership and automatically be authenticated the next time they visit the site.

The Login control has properties for customized display, for customized messages, and for links to other pages where users can change their password or recover a forgotten password. The Login control can be used as a standalone control on a main or home page, or you can use it on a dedicated login page.

If you use the Login control with ASP.NET membership, you do not need to write code to perform authentication. However, if you want to create your own authentication logic, you can handle the Login control's Authenticate event and add custom authentication code.

The LoginView control allows you to display different information to anonymous and logged-in users. The control displays one of two templates: the AnonymousTemplate or the LoggedInTemplate. In the templates, you can add markup and controls that display information appropriate for anonymous users and authenticated users, respectively.

The LoginView control also includes events for ViewChanging and ViewChanged, which allow you to write handlers for when the user logs in and changes status.

The LoginStatus control displays a login link for users who are not authenticated and a logout link for users who are authenticated. The login link takes the user to a login page. The logout link resets the current user's identity to be an anonymous user.

You can customize the appearance of the LoginStatus control by setting the LoginText and LoginImageUrl properties.

The LoginName control displays a user's login name if the user has logged in using ASP.NET membership. Alternatively, if your site uses integrated Windows authentication, the control displays the user's Windows account name.

The PasswordRecovery control allows user passwords to be retrieved based on the e-mail address that was used when the account was created. The PasswordRecovery control sends an e-mail message containing a password to the user.

You can configure ASP.NET membership to store passwords using non-reversible encryption. In that case, the PasswordRecovery control generates a new password instead of sending the original password to the user.

You can also configure membership to include a security question that the user must answer to recover a password. If you do, the PasswordRecovery control asks the question and checks the answer before recovering the password.

The PasswordRecovery control requires that your application can forward e-mail message to a Simple Mail Transfer Protocol (SMTP) server. You can customize the text and format of the e-mail message sent to the user by setting the MailDefinition property

The CreateUserWizard control collects information from potential users. By default, the CreateUserWizard control adds the new user to the ASP.NET membership system.

The CreateUserWizard control gathers the following user information:
● User name
● Password
● Confirmation of password
● E-mail address
● Security question
● Security answer

This information is used to authenticate users and recover user passwords, if necessary.

The ChangePassword control allows users to change their password. The user must first supply the original password and then create and confirm the new password. If the original password is correct, the user password is changed to the new password. The control also includes support for sending an e-mail message about the new password.

The ChangePassword control includes two templated views that are displayed to the user. The first is the ChangePasswordTemplate, which displays the user interface used to gather the data required to change the user password. The second template is the SuccessTemplate, which defines the user interface that is displayed after a user password has been successfully changed.

The ChangePassword control works with authenticated and non-authenticated users. If a user has not been authenticated, the control prompts the user for a login name. If the user is authenticated, the control populates the text box with the user's login name.

Other Resources & Links:

Upgrade Your Site's Authentication with the New ASP.NET 2.0 Membership API
http://msdn.microsoft.com/msdnmag/issues/05/11/Membership/default.aspx

Membership Provides
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/ASPNETProvMod_Prt1.asp

ASP.NET Login Controls Overview
http://msdn2.microsoft.com/en-us/library/ms178329.aspx

How to Use Membership in ASP.Net 2.0
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpag2/html/paght000022.asp

Exam 70-553 - Create a mobile Web application project.

Exam 70-553 - Use authorization to establish the rights of an authenticated user.