You are developing an ASP.NET MVC application. You need to authenticate clients by using an ASP.NET
membership database. Which authentication method should you implement?
A.
Kerberos
B.
Forms
C.
Basic
D.
Windows
You are developing an ASP.NET MVC application. You need to authenticate clients by using an ASP.NET
membership database. Which authentication method should you implement?
You are developing an ASP.NET MVC application. You need to authenticate clients by using an ASP.NET
membership database. Which authentication method should you implement?
A.
Kerberos
B.
Forms
C.
Basic
D.
Windows
Why Forms?
Okey, I found:
Forms (Cookie)
The Forms authentication provider is an authentication scheme that makes it possible for the application to collect credentials using an HTML form directly from the client. The client submits credentials directly to your application code for authentication. If your application authenticates the client, it issues a cookie to the client that the client presents on subsequent requests. If a request for a protected resource does not contain the cookie, the application redirects the client to the logon page. When authenticating credentials, the application can store credentials in a number of ways, such as a configuration file or a SQL Server database. For more information, see Forms Authentication Provider.
Here is an introduction to ASP .NET membership: https://msdn.microsoft.com/en-us/library/yh26yfzy.aspx
” ASP.NET membership therefore helps you manage user authentication in your Web sites. You can use ASP.NET membership with ASP.NET forms authentication by using with the ASP.NET login controls to create a complete system for authenticating users. “