Click to See Complete Forum and Search --> : Frames Problem


spinnyscripter
10-22-2003, 07:39 AM
i cant seem to find the code for mframes any ware. and i wanted header and footer fame on my site as im trying to get it done to a dedline

i will concentrate on a no frames section ass soon as posible
Thanks Daniel

DaveSW
10-22-2003, 10:44 AM
what's an mframe?
do you mean an iframe?

spinnyscripter
10-23-2003, 07:17 AM
sorry, my frames. not mframes oor iframes

DaveSW
10-23-2003, 09:32 AM
Use W3C framset doctype on this page.
<HTML>
<HEAD>
<TITLE>title</TITLE>
</HEAD>
<FRAMESET ROWS="100,*,100" FRAMESPACING="0" FRAMEBORDER="0" BORDER="0">
<FRAME SRC="TopFrame.htm" SCROLLING="NO">
<FRAME SRC="home.htm" NAME="target">
<FRAME SRC="BottomFrame.htm" SCROLLING="NO">
<NOFRAMES>
<BODY BGCOLOR="#FFFFFF">
<P><I>This document requires a browser that can view frames. however, you can access the main pages using a hyperlink places here</I></P>
</BODY>
</NOFRAMES>
</FRAMESET>
</HTML>

spinnyscripter
10-24-2003, 04:02 PM
thanks do you have the framsetdoctype for the example above please

DaveSW
10-25-2003, 05:07 AM
Sure.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
<HEAD>
<TITLE>title</TITLE>
</HEAD>
<FRAMESET ROWS="100,*,100" FRAMESPACING="0" FRAMEBORDER="0" BORDER="0">
<FRAME SRC="TopFrame.htm" SCROLLING="NO">
<FRAME SRC="home.htm" NAME="target">
<FRAME SRC="BottomFrame.htm" SCROLLING="NO">
<NOFRAMES>
<BODY BGCOLOR="#FFFFFF">
<P><I>This document requires a browser that can view frames. however, you can access the main pages using a hyperlink places here</I></P>
</BODY>
</NOFRAMES>
</FRAMESET>
</HTML>