views:

64

answers:

2

Hi, 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 ?

A: 

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.

klausbyskov
I have my own site with multiple data (presented on user controls), and it's not possible to retrieve that using webservices based on architecture I have right now.
Jarek
+4  A: 

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

naivists
thank you, I should search on google for it first though before asking this question :)
Jarek