views:

65

answers:

1

I need to be able to load web pages from different sites within a page on my site. I am using C# .NET and master pages. Within the content page, I want to be able to load an arbitrary page and display it without any of the browser controls appearing - just the page content.

+3  A: 

Can you not just use a boring old iframe?

<iframe src="http://stackoverflow.com" width="900" height="500"></iframe>
Oli
Can you give me a simple code example?
Bob Jones
Updated with example. And yes, please accept some answers on your previous questions. You have lots of accurate answers to choose from.
Oli