Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
UserSid sid = UserSid.Load(txtEmail.Text);
//CREATE USER
if( sid == null )
{
sid = new UserSid(EPiServer.Security.SecurityIdentityType.ExtranetUser);
sid.Name = txtEmail.Text;
PasswordGenerator pwdGen = new PasswordGenerator();
strPassword = pwdGen.Generate();
sid.Password = strPassword;
sid.Active = true;
sid.Save();