Chapter 20
cookie
ASP.NET automatically creates an authentication _______ when an application indicates that a user should be authenticated.
d. It's simple to use when compared to the old Membership system.
All but one of the following is a benefit of the ASP.NET Identity system. Which one is it? a.It's based on OWIN middleware b.It's distributed as a NuGet package. c.It can be used with all ASP.NET frameworks. d.It's simple to use when compared to the old Membership system.
LoginStatus
If a user has logged in and been authenticated, the ____________ control lets the user log off.
authorization
The process of granting a user access to an application is called ___________.
authentication
The process of validating the identity of a user is called ___________.
subfolder
To apply an access rule to one or more pages of an application, you typically places those pages in a _______.
A. Enter a user name
To create a new account, a user must do all but one of the following. Which one is it? A. Enter a user name B. Enter an email address C. Enter a password D. Confirm the password
LoginView
To display one message if a user is logged in and another message if a user is not logged in, you can use the ___________ control.
False, LoginStatus
True or False: If a user has logged in and been authenticated, the LoginView control lets the user log off.
True
True or False: Roles can be used to apply the same access rules to a group of users.
True
True or False: To change a password, the user must enter the current password.
True
True or False: To display one message if a user is logged in and another message if a user is not logged in, you can use the LoginView control.
True
True or False: When you create an access rule, you can apply it to anonymous users.
C.redirects the browser to the login page
When ASP.NET receives a request for an application that uses individual user account authentication from a user who hasn't been authenticated, the server does which of the following? A.sends a response to the browser that includes a cookie with authentication information B.uses the user name and password included in the request to authenticate the user C.redirects the browser to the login page D.redirects the browser to an error page
Individual
When you use ________________ user account authentication, you must use a login form to get a user's name and password.