Link to home
Start Free TrialLog in
Avatar of applekanna
applekanna

asked on

frames

I want this frame layout.

I have done this but what happens is  body is scrolllable and all are viewd on the screen so even though footer in least important it stays on screen and body is scrolled.

*********************
* HEADER                          *
*********************
*                                       *
*                                       *
* BODY                              *
*                                       *
*                                       *  
*********************
*FOOTER                          *
*********************

I want is similar to jsp include option
<@include top.jsp>
<@include body.jsp>
<@include bottom.jsp>

Thx for your help
ASKER CERTIFIED SOLUTION
Avatar of ADSaunders
ADSaunders

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of applekanna
applekanna

ASKER

thx alan for ur qwik reponse

but does IFrames work with NN.

applekanna,
Dunni , I use IE. You may be able to do it with layers ??
.. Alan
this is what i have

    <frameset rows="*,60" border=0 bordercolor="#FFFFFF">
      <frameset cols="200,*" border=0 >
         <frame src="Menu.jsp" name="LeftFrame" noresize scrolling=no>
            <frameset rows="90,30,*" border=0 bordercolor="#FFFFFF">
              <frame src="c.jsp" name="Frame1" noresize scrolling=no >
              <frame src="b.jsp" name="Frame2" noresize scrolling=no >
              <frame src="a.jsp" name="Frame3" noresize scrolling=yes>
            </frameset>
      </frameset>
        <frame src="bottom.jsp" name="BottomFrame" noresize scrolling=no>
    </frameset>

can iframes and framestes be combined

Thank q
Assuming you can use IFrames in NN, then yes, I've used iframes to provide independently scrollable regions within a frameset.
.. Alan
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
In this case, I'm not sure what the point would be of using jsp includes with iframes, as ADSaunders suggested. If you can use SSI that is any good you surely wouldn't be needing frames/iframes.

That said, here's my iframe version (not for NN4, and iffy in Opera 7.1).

<body style="margin:0px;padding:0px;overflow:hidden">
<iframe height="15%" width="100%" frameborder="0"  src="myheader.htm"></iframe>
<iframe id="contentiframe"  height="70%" width="100%" frameborder="0"  src="mycontent1.htm"></iframe>
<iframe height="15%"  width="100%" frameborder="0" src="myfooter.htm"></iframe>
</body>

.
If header and footer content does not vary you need only the central iframe.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial