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

Re: Entry page by Tom

Tom
Mon Apr 18 18:44:26 CDT 2005

Sure, it's possible. Don't have your index.htm page framed.
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
FrontPage 2003 Product Information:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
Understanding FrontPage:
http://msdn.microsoft.com/office/understanding/frontpage/
===
"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



Re: Entry page by Chris

Chris
Mon Apr 18 18:58:48 CDT 2005

there's a small and easy to use JavaScript at www.echoecho.com that will
"call" the frameset down on a page that gets loaded without the
frameset...If you want to keep frames.

--
Chris Leeds,
Microsoft MVP-FrontPage

ContentSeed: great tool for web masters,
a fantastic convenience for site owners.
http://contentseed.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



Re: Entry page by clintonG

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