以编程方式添加用户到SharePoint集团

在MOSS用户分配到组 2007

下面的代码将用户添加到网站,并到指定的组.

私人无效ADDUSER的(字符串strSite,字符串webGroup)
{
SPSecurity.RunWithElevatedPrivileges(代表()
{
使用 (的SPSite网站=新的SPSite(strSite))
{
使用 (使用SPWeb网站= site.OpenWeb())
{
布尔allowUnsafeUpdate = web.AllowUnsafeUpdates;
尝试
{
web.AllowUnsafeUpdates = TRUE;

web.SiteUsers.Add(登录名, MailId, LOGINID, “”);
web.Groups[WEBGROUP].ADDUSER(登录名, MailId, LOGINID, “”);

}
终于
{
web.AllowUnsafeUpdates = allowUnsafeUpdate;
}
}
}
});
}

给一个答复

你可以使用 这些HTML标签

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