• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

html includes

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all
how can i include an HTML page within another HTML page.
on the weblogic server.
(Note I don't want to convert my html files to jsp )
(also i don't want to use jsp:include or the @include direcitve)
------------------
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
U can include using #include tag. see the following example. Hope this helps!!!
<html>
<head>
<title> #include </title>
</head>
<body>
<TABLE width="100%" cellpadding=5 cellspacing=0 border=0>
<TR>
<TD valign=top bgcolor="#c0c0c0">
<TABLE width=100 bgcolor="#ffffff" cellpadding=5 cellspacing=10 border=0><TR><TD bgcolor="#c0c0c0">
<img src="logo.gif" border=2><p>
<!-- #include file="navbar.html"-->
</TD></TR></TABLE>
<TD valign=top>
<img src="title.gif">
<P>
<FONT SIZE=4 >Saving time with HTML #include command</B></I></FONT><p>
<hr align="left" size="2" width="100%">
ARTICLE TEXT
</TD>
</TR>
</TABLE>
</body>
</html>
[This message has been edited by nagesh vutukuru (edited June 18, 2001).]
[This message has been edited by nagesh vutukuru (edited June 18, 2001).]
 
Arch enemy? I mean, I don't like you, but I don't think you qualify as "arch enemy". Here, try this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic