当前位置:  开发笔记 > 编程语言 > 正文

复制SharePoint列表

如何解决《复制SharePoint列表》经验,为你挑选了1个好方法。

有没有办法轻松复制SharePoint列表代码?



1> vitule..:

从SharePoint标签来看,我假设您打算询问"如何以编程方式复制SharePoint列表(SPList)?"
没有测试它(甚至尝试编译它),我会做类似的事情:

SPWeb web; /* add code to initialize to current web */
SPList sourceList = web.Lists["nameOfSourceList"];
sourceList.SaveAsTemplate("templateFNM.stp", "tempList", "tempListDescription", 
                          true /* include list content */);
SPListTemplate template = web.ListTemplates["tempList"];
web.Lists.Add("newListName", "newListDescription", template);
web.Update();
SPList newList = web.Lists["newListName"];

此外,这里还有一个博客文章的链接,可以实现相同的网络应用程序.

最后提出建议:如果您使用"以编程方式"而不是"代码明智",您将获得更好的搜索结果.

希望这可以帮助.

推荐阅读
保佑欣疼你的芯疼
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有