1

所以,我有这个代码:

public override void ItemUpdated(SPItemEventProperties properties)
{
    base.ItemUpdated(properties);

    SPListItem newItem = AMethodWhichGetsANewListItem();   
    properties.ListItem.ParentList.GetItemById(properties.ListItemId).Delete();

    properties.Cancel = true;
    properties.InvalidateListItem();
    properties.Status = SPEventReceiverStatus.CancelWithRedirectUrl;
    properties.RedirectUrl = newItem.ParentList.DefaultDisplayFormUrl + "=" + newItem.ID;
}

此事件的属性中现在有一个不可用的 ListItem。在此之后,我无法取消或重定向。

错误日志显示:

`System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values.    at Microsoft.SharePoint.SPListItemCollection.get_Item(Int32 iIndex)     at Microsoft.SharePoint.SPListItem.EnsureItemIsValid()`

添加properties.InvalidateListItem()不会做任何事情。ItemUpdated 块中的 try { } 捕获不会捕获异常。

我能做些什么?

4

2 回答 2

0

我已将代码更改为 ItemUpdating。在此覆盖中,一切正常。

于 2012-11-15T08:50:05.963 回答
0

我猜你不见了

    SPWeb web = properties.Web;
    web.AllowUnsafeUpdates = true;
于 2012-11-14T16:58:59.313 回答