Entry page

I

iV

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
 
T

Tom Pepper Willett

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/
===
| 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
 
C

Chris Leeds, MVP-FrontPage

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/
 
C

clintonG

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/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top