In Episerver CMS you can check/uncheck the users active state by editing the user.
But how can you do this from code?
Hi,
This made through the membership provider:
var user = Membership.GetUser(userName); user.IsApproved = true; Membership.UpdateUser(user);
Are you talking about CMS/Site users or Relate+/Community users?
In Episerver CMS you can check/uncheck the users active state by editing the user.
But how can you do this from code?