Frames in Flare

This forum is for all Flare issues not related to any of the other categories.
Post Reply
pouliotmax
Sr. Propeller Head
Posts: 122
Joined: Wed Mar 07, 2007 9:16 am
Location: Quebec City

Frames in Flare

Post by pouliotmax »

Is there a way to get this code for frames working? Preview gives me an error on the following lines :

Code: Select all

<frame name="principal" src="DO34_04_04.htm">
  </frameset>

Code: Select all

<frameset rows="162,*">
  <frame name="banniere" scrolling="no" target="sommaire" src="DO34_04_01.htm">
  <frameset cols="330,*">
    <frame name="sommaire" target="principal" src="DO34_04_02.htm">
    <frame name="principal" src="DO34_04_04.htm">
  </frameset>
  <noframes>
  <body>

  <p>Cette page utilise des cadres, mais votre navigateur ne les prend pas en 
  charge.</p>

  </body>
  </noframes>
</frameset>
Thanks!
LTinker68
Master Propellus Maximus
Posts: 7247
Joined: Thu Feb 16, 2006 9:38 pm

Re: Frames in Flare

Post by LTinker68 »

pouliotmax wrote:

Code: Select all

<frame name="principal" src="DO34_04_04.htm">
  </frameset>
You should be closing with a </frame> tag, not a </frameset> tag. Or you need a / at the end of the line, so that it would be:

Code: Select all

<frame name="principal" src="DO34_04_04.htm" />
XML is a lot more strict than HTML, so you have to have closing tags or the slash mark at the end of self-contained tags.
Image

Lisa
Eagles may soar, but weasels aren't sucked into jet engines.
Warning! Loose nut behind the keyboard.
Post Reply