复制SharePoint列表

时间:2008-11-07 15:39:15

标签: sharepoint

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

1 个答案:

答案 0 :(得分:5)

从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"];

此外,here's指向实现相同网络应用程序的博文的链接。

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

希望这有帮助。