在 sharepoint web 部件中嵌入页面
我需要在 sharepoint 2010 中创建 Web 部件,这将允许我从特定 URL 查看页面。
IE 我想从此网络部件查看 http://google.com。 实现这一目标的最简单方法是什么?我对 Sharepoint 开发完全是新手,我刚刚下载了 SDK 并观看了一些有关创建 Web 部件的截屏视频。我还想在一页上放置一些这样的 Web 部件。
也许还有比创建 Web 部件更好的方法?
I need to create webpart in sharepoint 2010 which will allow me to view page from specific URL.
I.E. I'd like to view http://google.com from this webpart. What's the simpliest way to accomplish that ? I'm totally novice to Sharepoint developement, I've just downloaded SDK and watched some screencasts about creating webparts. Also I'd like to have few of this webparts on one page.
Maybe there is another and better way than creating a webpart ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是使用 页面查看器 Web 部件。实际上,它在页面中嵌入了一个 IFRAME。
The easiest way is to use the Page Viewer Webpart. It embeds an IFRAME in the page, actually.
也许还有比在 IFrame 中显示外部页面更好的方法。通常类似这样的事情就可以:
或者,如果您真的想显示来自外部合作伙伴的数据,则应该考虑通过 Web 服务检索数据。
Maybe there is another and better way than showing external pages in an IFrame. Usually something like this will do:
Or if you are serious about displaying data from external partners, you should consider retrieving data through web-services.