Open another website inside a Page?

I have a page in a website called “News” (we’ll call it Page A) which purpose is to open:http://www.(somesite).com – we’ll call that Page B

in the body (or a table) in Page A.

Page A will keep the formatting of the other pages in the website - it has a top banner, menu on the left, etc. Page B will just fit in Page A.

The link to Page A opens Page A, it does not open:

http://www.(somesite).com

So, Page A will open and inside you will see Page B.

Does that make sense??

I know I can have the user click on a link in Page A to open Page B in Page A, but can it load it automatically???

I am guessing there is some JavaScript routine or something in HTML to do this???

Thanks!

Dan

Subject: Open another website inside a Page???

Hi Dan

Use the ‘onload’ event in the section of page B plus the JavaScript command window.open

Use the _self keyword in your JavaScript to launch somesite.com in the current frame. Note: if your Page B is not in a separate frame of its own, then your ‘somesite.com’ will launch in place of everything in the current frame. Therefore Page B needs to be a separate frame to the rest of the components (your menu, banner etc).

Good luck

Bizhan

Subject: What about “src=” or “

Subject: Use frames

I do this all the time.Create a frame set with the top the left nav and the main frames. Have the nav frame open into the main frame and setup your links.

Subject: My Solution…

This is what I did…

In the page that I needed to other web page to load, I added in the form:

<IFRAME BORDER="0" FRAMEBORDER="0" SCROLLING="auto"src="http://www.ibm.com/news/us/"

width=“90%” height=“100%”

align=“right”>

I made this Pass-Thru HTML and is works fine. The page in the IFRAME links all open in the IFRAME too.