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

发布于 2024-08-31 05:11:34 字数 158 浏览 3 评论 0原文

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

已经谢谢了。

I am trying to figure out how to get the title of a list item from the base.ItemAdding(properties);
I know it's somewhere in properties, because what I want to do is copy the item that was just added to another list, meaning that the same item will be added to another list, can anyone help me get the the value of the fields from the item that was just added, such as title, description, ...

Thanks already.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似最初 2024-09-07 05:11:34

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

public override void ItemAdding(SPItemEventProperties properties)
       {

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

Hey - in the future if you are using the ItemAdding event - you can access properties from the AfterProperties collection

public override void ItemAdding(SPItemEventProperties properties)
       {

           String title = properties.AfterProperties["Title"].ToString();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文