我正在使用以下代碼在我的文檔庫中創建一個文件夾。事件被觸發並執行,直到我的代碼的最後一行沒有任何問題。但是該文件夾沒有被創建或列在我的文檔庫中。使用Sharepoint事件接收器在文檔庫中創建文件夾
public override void ItemAdded(SPItemEventProperties properties)
{
base.ItemAdded(properties);
string strDashListRoot = "http://win-hmpjltdbh5q:37642";
using (SPSite site = new SPSite(strDashListRoot))
{
using (SPWeb web = site.OpenWeb())
{
web.AllowUnsafeUpdates = true;
SPList spl = web.Lists["client_documents"];
spl.Items.Add("", SPFileSystemObjectType.Folder, "Helllworld");
spl.Update();
web.AllowUnsafeUpdates = false;
}
}
}
你或許可以使用當前的背景下,而不是新的-ING一個網站/網頁(可能不是你的問題雖然)。你是否有任何例外,還是隻是沒有創建?您確定該帳戶有足夠的權限來創建文件夾嗎? – Servy