ఆర్కైవ్స్

Programmatically SharePoint గుంపుకు యూజర్ జోడించండి

MOSS లో గుంపుకు యూజర్ కేటాయించేందుకు 2007

క్రింది కోడ్ సైట్కు మరియు పేర్కొన్న గుంపుకు యూజర్ జోడిస్తుంది.

ప్రైవేట్ గర్జన adduser(స్ట్రింగ్ strSite,స్ట్రింగ్ webGroup)
{
SPSecurity.RunWithElevatedPrivileges(ప్రతినిధి()
{
ఉపయోగించి (SPSite సైట్ = కొత్త SPSite(ఎస్.టి.ఆర్.లలో))
{
ఉపయోగించి (SPWeb వెబ్ = site.OpenWeb())
{
బూలియన్ allowUnsafeUpdate = web.AllowUnsafeUpdates;
ప్రయత్నించండి
{
web.AllowUnsafeUpdates = true;

web.SiteUsers.Add(లాగిన్ పేరు, ఇమెయిళ్ళు, loginId, “”);
web.Groups[webGroup].AddUser(లాగిన్ పేరు, ఇమెయిళ్ళు, loginId, “”);

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

ఒక Reply వదిలి

మీరు ఉపయోగించవచ్చు ఈ HTML టాగ్లు

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