Click to See Complete Forum and Search --> : HTML frames


hugsdan
April 23rd, 2003, 11:57 AM
hi all,

i want to have a page HTMl like this:
_______
| | |
|1| 2 |
| |____|
|_|_3__|

with 3 parts but the part 3 doesn't appear..why?


here is my code:

----------------------
<html>

<head>
<title>Interface Administrateur</title>
</head>

<frameset frameborder="0" border="0" cols="20%,80%">
<frame src="" name="menu" scrolling="no" frameborder = "no">
<frameset frameborder="0" border="0" raws = "70%,30%">
<frame src="" name="tabDroits" scrolling="yes" frameborder = "no">
<frame src="dan.html" name="formDroits" frameborder = "no">
</frameset>
</frameset>

<noframes>
<body bgcolor="#FFFFFF">
<h3><font size="2">Utiliser un navigateur compatible avec les frames.</font></h3>
</body>
</noframes>

</html>
----------------------------------------------

and here is my code in dan.html:
----------------------------------

<HTML><HEAD></head><body bgcolor="red">
<h2>dan</h2></body></html>

---------------------------------

Satishpp
April 23rd, 2003, 01:12 PM
if that is an exact copy of the code you are using, then the problem is on the second frameset line.

The spelling is rows and not raws

:D


Satish

hugsdan
April 24th, 2003, 03:22 AM
yes it's exactly that...do you know an editor for html which can detect this kind of errors?

fizch
April 29th, 2003, 03:25 PM
Any editor that changes the color of the text while you are typing should point this error out to you. If you type a word that it doesn't recognize, it is usually in the default color, but a word like rows should show up in a different color.