Content

De content van de site die uit de database komt behoort in een apart frame te worden geplaatst. Indien u geen frameset wilt, kunt u gebruik maken van Iframes. De links in het menu hebben standaard de Target contentFrame, dus het is belangrijk dat u dit frame ook deze naam geeft.

Standaard frameset

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">

<html>

<head>

<title>standaard frameset</title>
</head>

<frameset rows="80,*">
<frame name="kop" src="../frameset/kop.html">
<frameset cols="195,*">
<frame name="menu" src="../frameset/menu.html" >
<frameset rows="*,40" >
<frame name="contentFrame" src="infodome.html">
<frame name="onder" src="../frameset/onder.html">
</frameset>
</frameset>
<noframes>

<body>
Uw browser ondersteund helaas geen frames
</body>

</noframes>
</frameset>

</html>

Pagina waarin 2 I-frames zijn geplaatst

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>

<title>I-framset</title>
</head>

<body>
<div align="center">
<table width="99%" border="0" cellspacing="0" cellpadding="0" height="99%">
<tr>
<td align="center" valign="middle">
<table width="700" border="0" cellspacing="0" cellpadding="0" height="500">
<tr>
<td valign="top" width="200">
<iframe name="menu" src="menu.html" align="left" width="200" scrolling="auto" height="99%" frameborder="0"></iframe>
</td>
<td valign="top">
<iframe name="contentFrame" src="http://cms.infodome.nl/cms/showPage.jsp?action=document&docId=817" align="left" width="500%" scrolling="auto" height="99%" frameborder="0"></iframe>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</body>

</html>