以編程方式向SharePoint組添加用戶

用戶分配到組在MOSS 2007

下面的代碼將用戶添加到站點和指定的組.

私人無效的adduser(串strSite,串WEBGROUP)
{
SPSecurity.RunWithElevatedPrivileges(代表()
{
使用 (=新的SPSite的SPSite網站(strSite))
{
使用 (SPWeb網站 = site.OpenWeb())
{
布爾 allowUnsafeUpdate = web.AllowUnsafeUpdates;
嘗試
{
web.AllowUnsafeUpdates =真;

web.SiteUsers.Add(LoginName將, 延繩釣, 登錄 ID, “”);
web.Groups[WEBGROUP].adduser的(LoginName將, 延繩釣, 登錄 ID, “”);

}
最後
{
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>