1
votes

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 ?

2

2 Answers

4
votes

The easiest way is to use the Page Viewer Webpart. It embeds an IFRAME in the page, actually.

0
votes

Maybe there is another and better way than showing external pages in an IFrame. Usually something like this will do:

This is not actually google, and eventhough we would love to actually be google
<a href="http://google.com" target="_blank">this link</a> will have to do for now

Or if you are serious about displaying data from external partners, you should consider retrieving data through web-services.