clintonG
Mon Apr 18 21:03:58 CDT 2005
Put one of the JavaScripts shown below between the <head> put Javascript
here </head> and the page will not be hijacked and displayed in somebody
else's frameset.
// Break out of Frames 1
<script language="javascript">
<!--
if (top.location != location) {
top.location.href = location.href;
}
//-->
</script>
// Break out of Frames 2
<script language="javascript">
<!--
if (window != window.top) {
top.location.href = location.href;
}
// -->
</script>
// Break out of Frames 3
<script language="javascript">
<!--
if (top.frames.length > 1) {
top.location="/";
}
// -->
</script>
<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL
http://metromilwaukee.com/
URL
http://clintongallagher.metromilwaukee.com/
"iV" <iV@discussions.microsoft.com> wrote in message
news:911EAFC0-5485-446C-BFCA-B8687B66EA25@microsoft.com...
> i'd like my visitor, whatever the link they have, to enter my site via the
> index.htm page. Is it posible ?
>
> With google, for exemple, they can enter directly into a page, and my site
> is framed so it's messing up everything.
>
> Thank you