保存特定 Web 部件页面的 Web 部件配置
如何保存 SharePoint 中某个 Web 部件页面的 Web 部件配置?
How can I save the configuration of a web part for a certain web part page in SharePoint?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 UI 导出 Web 部件。编辑页面,单击 Web 部件上的下拉菜单,然后选择导出。这允许您保存 Web 部件的 XML 配置,以便可以将其上传到其他地方。
您还可以使用 以编程方式导出 Web 部件SPLimitedWebPartManager.ExportWebPart() 方法。
对于那些不允许导出的 Web 部件,请以编程方式枚举 Web 部件属性。这是完整列表 所有 Web 部件成员。
From the UI you can export the web part. Edit the page, click the drop-down on the web part, and select Export. This allows you to save the web part's XML configuration so it can be uploaded elsewhere.
You can also programmatically export the web part using the SPLimitedWebPartManager.ExportWebPart() method.
For those web parts that do not allow an export, enumerate the web part properties programmatically. Here is a complete list of all web part members.