In order to use FRAMES, the browser you are using must support FRAMES. The rule of thumb in designing web pages using frames is to create a web page without frames. You can do this with the NOFRAMES tag. You place the NOFRAMES tag after your FRAMESET tags.
<NOFRAMES>
<BODY>
This is were you put your text for non-frame
browsers.
</BODY>
</NOFRAMES>
SCROLLBARS
Scrollbars are used when the web page becomes to large for a given window. You can set the scrollbars for a frame by either using the YES, NO, OR AUTO parameter.
The following FRAME SCR tag indicates scrollbars will be used whether they are needed or not.
<FRAME SRC="test.htm" SCROLLING=YES>
The following FRAME SCR tag indicates that scrollbars will not be used even if the web page becomes to large for the frame window.
<FRAME SRC="test.htm" SCROLLING=NO>
The following FRAME SCR tag indicates that scrollbars be used only if they are needed.
<FRAME SRC="test.htm" SCROLLING=AUTO>