Visual Studio 2010中事件接收器的问题

时间:2010-04-29 08:47:29

标签: event-handling field sharepoint-2010 event-receiver

我试图弄清楚如何从base.ItemAdding(properties)中获取列表项的标题; 我知道它在属性中的某个位置,因为我想要做的是复制刚刚添加到另一个列表中的项目,这意味着相同的项目将被添加到另一个列表中,任何人都可以帮助我从中获取字段的值刚添加的项目,例如标题,说明,......

谢谢。

1 个答案:

答案 0 :(得分:1)

嘿 - 将来如果您正在使用ItemAdding事件 - 您可以从AfterProperties集合访问属性

public override void ItemAdding(SPItemEventProperties properties)
       {

           String title = properties.AfterProperties["Title"].ToString();