Programmatisch Gebruiker toevoegen aan groep SharePoint

Om de gebruiker aan groep in MOSS 2007

De volgende code voegt de gebruiker naar de site en de specifieke groep.

private void adduser(string strSite,string WEBGROUP)
{
SPSecurity.RunWithElevatedPrivileges(delegeren()
{
met behulp van (SPSite site = nieuwe SPSite(strSite))
{
met behulp van (SPWeb internet = site.OpenWeb())
{
Boolean allowUnsafeUpdate = web.AllowUnsafeUpdates;
probeer
{
web.AllowUnsafeUpdates = true;

web.SiteUsers.Add(LoginName, Longline, loginid, “”);
web.Groups[WEBGROUP].Adduser(LoginName, Longline, loginid, “”);

}
eindelijk
{
web.AllowUnsafeUpdates = allowUnsafeUpdate;
}
}
}
});
}

Laat een reactie achter

U kunt gebruik maken deze HTML-tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>