What is Membership for?

Asked

Viewed 94 times

2

I was analyzing Web.confg and a question arose, what is the usefulness of the tag membership? What is he?

  • 1

    https://docs.microsoft.com/pt-br/dotnet/framework/wcf/feature-details/how-to-use-the-aspnet-membership-provider

1 answer

2


The providers Roles and Membership provide the resources to manage authentication and authorization. Where authentication is the process for verifying user identity and authorization refers to the management of user permissions.

Provider - Base Class - Description

Membership - Membershiper - Provider Manage users in ASP.NET 2.0 application - Responsible for user authentication

Roles - Roleprovider - Manage user roles in the ASP.NET 2.0 application - Responsible for group attribution and permissions authorization.

Through the Membership provider we can create new users and passwords in a database and validate the identity of the user using the stored information. To store the information the provider uses an SQL Server database that is generated automatically, and transparently in the App_data folder if we use the default SQL Server mode.

source: http://www.macoratti.net/07/05/aspn_umr.htm

Browser other questions tagged

You are not signed in. Login or sign up in order to post.