I know of two ways to prevent pages from being trapped in a frame in
that manner. There probably are more ways, but these are the two with
which I'm familiar. One uses plain html, the other uses javascript.
html method:
After </title> but before </head> insert:
<base target="_top">
javascript method:
After </title> but before </head> insert:
<script LANGUAGE="JavaScript">
<!-- Hide script from old browsers
if (top.location !=self.location)
{top.location = self.location}
// End hiding script from old browsers -->
</script>
I think either of the above methods should resolve the problem.
-Sandy
On Friday, May 31, 2002, at 04:11 PM, Terria W. Baynor wrote:
Elizabeth Harris wrote:
<snip>
>
> This persists even when following links into the various projects.
> Terria, are you aware that if someone reaches your ALHN pages by this
> route, the web address that appears is still
http://www.ncgenweb.net,
> not your real URL, and Dancing Cows appears at the title bar?
******no, I was not aware that it was doing that!