如何通过代码将自定义Web部件添加到Web部件页面?
我想如何通过代码将自定义 Web 部件添加到 Web 部件页面?自定义 Web 部件已部署到 SharePoint 网站。这是一个 MOSS 实例。
I wanna how to add a custom web part to a webpart page through code? The custom web part is already deployed to the SharePoint site. It's a MOSS instance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要将 Web 部件放置在页面上,您必须使用 SPLimitedWebPartManager 可以从实际的 SPWeb 对象中检索。
创建要添加到页面的 Web 部件实例后,调用 AddWebPart() 方法,并将 Web 部件实例作为参数传递。
To place a web part on a page you have to use the SPLimitedWebPartManager which could be retrieved from the actual SPWeb object.
After creating an instance of the web part you want to add to the page, you call the AddWebPart() method of the web part manager and pass the web part instance as a parameter.