Skip to content
Archive of posts filed under the ASP.NET MVC category.

Managing users in ASP.NET MVC

User management in websites mostly required for E-Commerce, posting comments, Emails and more…
ASP.NET framework has built-it API for handling Membership, Roles and profiles.
 
Membership (System.Web.Security.MembershipProvider) – User accounts access and registration.
Roles (System.Web.Security.RoleProvider) – Organizing users into groups (for example: Admin, regular user, banned).
Profiles (System.Web.Profile.ProfileProvider) – Storing extra data per-user.
  
If you have a small size website, you [...]