有没有办法轻松复制SharePoint列表代码?
从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"];
此外,这里还有一个博客文章的链接,可以实现相同的网络应用程序.
最后提出建议:如果您使用"以编程方式"而不是"代码明智",您将获得更好的搜索结果.
希望这可以帮助.