Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

A way to display a separate html page within another html page? 1

Status
Not open for further replies.

rcbatlinux

Technical User
Mar 30, 2001
80
US
I have an html page that on the left has links and to the right I want to have a separate html page that I can edit easily with msword to display company news, etc. Of course I could use a frame to do this but then I have to have scroll bars on the left frame. Any ideas out there to be able to essentially embed an html page within another? And be able to freely update the embeded page?

rcbatlinux
 
Frames is the option. What do you mean handle the scrollbars, you can set these to not show if you like DeZiner
Never be afraid to try something new.
Remember that amateurs built the Ark.
Professionals built the Titanic
 
You could a use the include tag...which includes a file

<!--#include virtual=&quot;path/file.ext&quot; -->
<!--#include file=&quot;file.ext&quot;-->

CS



***************
***************
 
You could also try building a table and using the IFRAME tag. You can use it in the <TD> portion of your page. You can try to see how it it works for you. The code is
<IFRAME SRC=&quot;pathtopage.html&quot;>
Hope this helps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top