Each page does not have unique address?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When someone goes to my site and click on the links to the different pages I
have created the url does ot change. SO if someone wants to bookmark a
specific page they cannot because each page comes up as the home page. What
did I do wrong and can I fix it? Thanks!
 
Post a URL for us to look at.
--
===
Tom [Pepper] Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/
===
| When someone goes to my site and click on the links to the different pages
I
| have created the url does ot change. SO if someone wants to bookmark a
| specific page they cannot because each page comes up as the home page.
What
| did I do wrong and can I fix it? Thanks!
 
This is because you are using frames, users will never see or be able to easily bookmark pages that
load within a frame. The solution is to not use frames.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Well, it's obviously a little late for that. I did not know it would cause a
problem. Is there anything I can do and keep the frames, or a way to change
it "easily" from frames to not frames but keep the same "look"? Do I have to
start over???

Thanks.
 
You would have to create individual pages. However you can use FP Include Pages to include the
header and sidebar navigation on each page.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Well, I guess there's alot more about this then I understand. I thought each
one of my pages were individual pages. I don't know how to do this, I will
have to research, but I appreciate knowing it is possible. Thanks!
 
Each of your pages technically are individual. They are just loaded into the
same area that exists in the frameset page. Kind of like a rotating
billboard, it's the same space being viewed, but different items can be
loaded into that view.

As Thomas suggested, youc ould use shared borders which can then be applied
to all pages in the site. Before you use them though, I would recommend
backing up your site just in case it messes something up so you can easily
go back to what you had. When doing a large-scale change to a site, things
can easily get goofy and a backup can save a ton of aggrevation.
Hope this helps,
Mark Fitzpatrick
Microsoft MVP- FrontPage
 
Another option if the hosting service allows it is to use
includes, the drawback is you can no longer use an htm
extension, it would need to become shtm. If the pages are
already using some type of server scripting (eg php, asp),
then there are include facilities inside of there:

default.htm
<frameset>
<frame name="header" src="/common/header.htm">
<frame name="main" src="main.htm">
</frameset>

can be replaced with:

default.shtm
<div id="header">
<!--#include virtual="="/common/header.htm"-->
</div>

<div id="main">
<!--#include virtual="="main.htm"-->
</div>




: Each of your pages technically are individual. They are
just loaded into the
: same area that exists in the frameset page. Kind of like a
rotating
: billboard, it's the same space being viewed, but different
items can be
: loaded into that view.
:
: As Thomas suggested, youc ould use shared borders which
can then be applied
: to all pages in the site. Before you use them though, I
would recommend
: backing up your site just in case it messes something up
so you can easily
: go back to what you had. When doing a large-scale change
to a site, things
: can easily get goofy and a backup can save a ton of
aggrevation.
: Hope this helps,
: Mark Fitzpatrick
: Microsoft MVP- FrontPage
:
:
:
in message
: : > Well, I guess there's alot more about this then I
understand. I thought
: > each
: > one of my pages were individual pages. I don't know how
to do this, I
: > will
: > have to research, but I appreciate knowing it is
possible. Thanks!
: >
: > "Thomas A. Rowe" wrote:
: >
: >> You would have to create individual pages. However you
can use FP Include
: >> Pages to include the
: >> header and sidebar navigation on each page.
: >>
: >> --
: >> ==============================================
: >> Thomas A. Rowe (Microsoft MVP - FrontPage)
: >> ==============================================
: >> If you feel your current issue is a results of
installing
: >> a Service Pack or security update, please contact
: >> Microsoft Product Support Services:
: >> http://support.microsoft.com
: >> If the problem can be shown to have been caused by a
: >> security update, then there is usually no charge for
the call.
: >> ==============================================
: >>
: >> "Jenn Lloyd" <[email protected]>
wrote in message
: >>
: >> > Well, it's obviously a little late for that. I did
not know it would
: >> > cause a
: >> > problem. Is there anything I can do and keep the
frames, or a way to
: >> > change
: >> > it "easily" from frames to not frames but keep the
same "look"? Do I
: >> > have to
: >> > start over???
: >> >
: >> > Thanks.
: >> >
: >> > "Thomas A. Rowe" wrote:
: >> >
: >> >> This is because you are using frames, users will
never see or be able
: >> >> to easily bookmark pages
: >> >> that
: >> >> load within a frame. The solution is to not use
frames.
: >> >>
: >> >> --
: >> >> ==============================================
: >> >> Thomas A. Rowe (Microsoft MVP - FrontPage)
: >> >> ==============================================
: >> >> If you feel your current issue is a results of
installing
: >> >> a Service Pack or security update, please contact
: >> >> Microsoft Product Support Services:
: >> >> http://support.microsoft.com
: >> >> If the problem can be shown to have been caused by a
: >> >> security update, then there is usually no charge for
the call.
: >> >> ==============================================
: >> >>
: >> >> "Jenn Lloyd" <Jenn (e-mail address removed)>
wrote in message
: >> >>
: >> >> > When someone goes to my site and click on the
links to the different
: >> >> > pages I
: >> >> > have created the url does ot change. SO if
someone wants to
: >> >> > bookmark a
: >> >> > specific page they cannot because each page comes
up as the home
: >> >> > page. What
: >> >> > did I do wrong and can I fix it? Thanks!
: >> >>
: >> >>
: >> >>
: >>
: >>
: >>
:
:
 
What you did "wrong" is used frames. What you see here is one of the
biggest drawbacks to frames sites - the inability to bookmark pages,
and any pages that are linked to directly will be displayed without
navigation.

The best cure is to amalgamate the top and left frames into each page,
and eliminate frames altogether. This can be done using a DWT
(FP2003) or Include pages in all versions of FrontPage.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/

Jenn Lloyd said:
http://www.ElmerUMC.org


Tom [Pepper] Willett said:
Post a URL for us to look at.
--
===
Tom [Pepper] Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/
===
message
| When someone goes to my site and click on the links to the
different pages
I
| have created the url does ot change. SO if someone wants to
bookmark a
| specific page they cannot because each page comes up as the home
page.
What
| did I do wrong and can I fix it? Thanks!
 
Mike is referring to Server side Includes (SSI)
- not FP Design time lncludes

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|
| Mike Mueller wrote:
| > Another option if the hosting service allows it is to use
| > includes, the drawback is you can no longer use an htm
| > extension, it would need to become shtm. >
| >
|
| Why? I am using includes with an htm extension.
|
| www.richardfisher.com
|
 
Back
Top