How to create user profiles in Sitecore

I want the registration functionality for the sitecore site. I want to dynamically add users / user profiles.

If anyone can help me, he will be highly appreciated.

+5
source share
1 answer

Sitecore uses the standard ASP.NET membership provider for its users, so you can create users with basic ASP.NET calls.

userName = string.Format(@"{0}\{1}", domain, userName);
Membership.CreateUser(userName, password, email);

domainthe variable will be sitecoreor extranet.

Karina Apostolides has a set of useful membership features available here: Programmatically add and edit users

+14
source

All Articles