如何在 sharepoint 2010 中不同站点但一台服务器的两个列表之间复制列表项
我有两个清单
列表 A 和列表 B
当列表 A 中的“移动”列为“是”时,我想将项目从列表 A 复制到列表 B
列表 A 和列表 B 位于不同站点但同一服务器
我正在使用 sharepoint 2010
I have two list
List A and list B
I want to copy item from list A to list B when the column "Move" in list A is yes
List A and list B is in different site but same server
I am using sharepoint 2010
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该考虑事件接收器并将其关联到
ItemAdded
和ItemUpdated
上的列表 A,以检查“Move”列的值是否为 yes,然后在列表 B 中创建一个新列表项然后删除列表 A 中的列表项编辑:您可以通过使用 SharePoint 对象模型以 C# 或 VB 编写带有事件接收器的功能并将其部署到服务器来实现此目的
You should think about event receiver and associate it to List A on
ItemAdded
andItemUpdated
to check if the value of column "Move" is yes then create a new listitem in List B then delete the listitem in List AEdit: you can achieve that by using SharePoint Object Model to write a Feature with Event Receiver in C# or VB and deploy it to the server