Title: Frame Errors
URL: http://www.activejump.com/k-5.shtml
Email: webmaster@activejump.com

Introduction

The majority of browsers commonly used support frames. However, there are some old browser versions that do not. In these cases, you are able to specify an error message if for some reason the frame fails to load.
Browser Support
To specify what will happen if the frame fails to load, insert the tag <NOFRAMES>. The starting tag is <NOFRAMES> and the closing tag is </NOFRAMES>. The BODY tags should be placed between the two tags, and within the body tags, should be the HTML that will replace the frames.

The example below imitates a situation where frames are not supported by the browser.

index.html - Notepad
....<HEAD>

<FRAMESET ROWS="50%,50%">
<FRAME SRC="http://www.web-site-1.com" NAME="page1">
<FRAME SRC="http://www.web-site-2.com" NAME="page2">
</FRAMESET>

</HEAD>

<NOFRAMES> <BODY>
Sorry, your browser does not support frames.
</BODY> </NOFRAMES>

</HTML>

My Homepage - Microsoft Internet Explorer
Sorry, your browser does not support frames.