You could also place a script in the body section of your document to write out a link if it is in frames like this:
<html>
<head>
<title>Break out of frames link</title>
</head>
<body>
<TABLE ALIGN="center" BORDER="1" WIDTH="50%" HEIGHT="20%" CELLSPACING="0" CELLPADDING="0">
<TR>
<TD ALIGN="center" VALIGN="top">
<SCRIPT LANGUAGE="javascript">
if (window != top)
{
document.write("<A HREF='javascript:top.location.href = location.href'>Break Out of Frames</A>")
document.close()
}
</SCRIPT>
</TD>
</TR>
</TABLE>
</body>
</html>
If you don't want a text link then you could also use an image. If you want a form button then you could write the appropriate form tags. Good Luck.
Comment