使用代码批量删除列表项(Item)时应该注意,不要使用item.Update()方法,在删除以后统一使用List.Update()即可,否则可能引起报错,另外所有使用index来标志的都需要用for大到小循环。也可能会出错。使用for循环来代替。
ps:记得
site.AllowUnsafeUpdates = true;
web.AllowUnsafeUpdates = true;
item.Update();
web.AllowUnsafeUpdates = false;
site.AllowUnsafeUpdates = false;