将 Wiki 页面从一个 Sharepoint 站点移动到另一个站点
我对旧的共享点网站和新的共享点网站拥有网站级管理员访问权限。
我尝试过以下操作 -
我使用 Sharepoint Designer 2010 复制了 Wiki 页面,但由于某种原因,这些 Wiki 页面中的引用出现了问题。
我尝试将库导出到 MS Access 数据库并将其导入到新站点。还是不行。
有人可以告诉我如何将 wiki 页面从旧网站复制/移动到新网站吗?
I have site level admin access on an old sharepoint site and a new sharepoint site.
I have tried the following -
I Have copied the Wiki pages using the Sharepoint Designer 2010, But for some reason the references in those wiki pages go for a toss.
I Have tried exporting the library to an MS Access Database and importing it to the new site. Still doesnt work.
Could someone let me know how I can copy/move the wiki pages from the old site to the new site?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有多种方法可以在列表和库之间复制数据:
1) 使用 stsadm 导出\导入:
http://blog.falchionconsulting.com/index.php/2007/ 09/importexportcopy-lists/
2) 使用列表模板或电子表格:
http://office.microsoft.com/en-us/windows-sharepoint-services-help/copying-or-moving-sharepoint-lists-HA001154562.aspx
3)以编程方式:
http://www.spsamples.com/2011 /07/moving-sharepoint-list-items-to-archive.html
There are number of way to copy data between lists and libraries:
1) Export\import using stsadm:
http://blog.falchionconsulting.com/index.php/2007/09/importexportcopy-lists/
2) Using list template or spreadsheet:
http://office.microsoft.com/en-us/windows-sharepoint-services-help/copying-or-moving-sharepoint-lists-HA001154562.aspx
3) Programmatically:
http://www.spsamples.com/2011/07/moving-sharepoint-list-items-to-archive.html
您可以尝试 SPDeployment API。您可以导出整个 wiki 页面库(列表)并将其导入到其他网站或网站集,也可以仅导出/导入选定的页面(列表项)。
恐怕 OOTB SP 工具(stsadm 和 PS cmdlet)只允许您导出整个网站。要仅导出网站的一部分(在您的情况下是 wiki 页面库),您必须使用 SP API 对其进行编码。不过,这并不复杂。
You can try the SPDeployment API. You can export the entire wiki page library (list) and import it to other site or site collection, or you can just export/import selected pages (list items).
I'm afraid that the OOTB SP tools (stsadm and PS cmdlets) let you export only an entire web site. To export just a part of the site - a wiki page library in your case - you'd have to code it using the SP API. It's not complicated, though.