tags:

views:

47

answers:

4

Hi,

How to load an external website in a DIV? I must not use IFRAME

Thanks in advance aar

A: 

Use IFrame,Instead of div

regexhacks
A: 

You can use iframe in Div for to call external web site in it.

Jeevan Bhatt
A: 

You could use an object, which will be treated a bit like an iframe, but with less consistent browser support (making it a very poor alternative to an iframe). I've only seen this used in exercises to use HTML Strict when Transitional (or a redesign to avoid the feature) is called for.

You could parse the data from the remote server on your server and bundle it in up in the original page.

David Dorward
A: 

You can try using Uframe

http://www.codeproject.com/KB/aspnet/uframe.aspx

Minh Nguyen