I want to functionality functionality of signup for sitecore website. I want to add sitecore users/user profiles dynamically.
If anyone can help me, it would be highly appriciated.
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);
domain
variable would be sitecore
or extranet
.
Karina Apostolides has a collection of useful membership functions available here: Programmatically Add & Edit Users
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With