カスタム リスト peoples から取得し、作成したサブサイトで許可を与えるにはどうすればよいですか。
public override void ItemAdded(SPItemEventProperties properties)
{
base.ItemAdded(properties);
このプロパティから取得する必要があることは知っていますが、方法がわかりません。約 20 のブログを読んで、ここから見つけることができません。
string subsitefirst = properties.ListItem["firstSub"].ToString();
string subsitesecond = properties.ListItem["secondSub"].ToString();
//take 1st and 2nd fields name and create with them subsites.
if (string.IsNullOrEmpty(subsitefirst) && string.IsNullOrEmpty(subsitesecond))
{
return;
}
else
{
using (SPSite site = new SPSite("http://sw-mss-01:23222/Worker1/"))
{
using (SPWeb web = site.OpenWeb())
{
try
{
//SPListItem listpeople = web.GetListItem
web.AllowUnsafeUpdates = true;
SPWeb newWeb = site.AllWebs.Add("worker1/" + subsitefirst, subsitefirst, "Site description", 1033, "STS#0", false, false);
SPWeb newSecondWeb = site.AllWebs.Add("worker1/" + subsitefirst + "/" + subsitesecond, subsitesecond, "Site description", 1033, "STS#0", false, false);
}
catch (Exception)
{
web.AllowUnsafeUpdates = false;
}
}`
}
}
}
}