Template Re-Include FP2003

G

Guest

H E L P !!!

I am using dwts to manage a multipage site. I keep having problems with a
minor change to a template causing the whole page to be re-included in the
"content" section of the template so my page which looks like:
<HEAD></HEAD>
[Begin Template content]
<!-- Editable 1 -->
[Page Conent]
<!-- End Editable 1 -->
[End Template content]

Becomes

<HEAD></HEAD>
[Begin Template content]
<!-- Editable 1 -->
[Begin Template content]
[Page Conent]
[End Template content]
<!-- End Editable 1 -->
[EndTemplate content]

This means post a gen I need to check all pages to see if this has occured
and then re-create the page.
ANY HELP WOULD BE GREATLY APPRECIATED!!
 
S

Stefan B Rusynko

You are using an invalid template structure
The editable regions need to be in valid html blocks
As in

<html>
<head>
<!-- #BeginEditable "MetaData" -->
<title>New Page 1</title>
<!-- #EndEditable -->
</head>

<body>
<p>[Non Editable Page Content HERE]</p>
<!-- #BeginEditable "Content" -->
<p>[Editable Page Content HERE]</p>
<!-- #EndEditable -->
</body>
</html>


See http://office.microsoft.com/en-us/frontpage/HA010775891033.aspx

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


|H E L P !!!
|
| I am using dwts to manage a multipage site. I keep having problems with a
| minor change to a template causing the whole page to be re-included in the
| "content" section of the template so my page which looks like:
| <HEAD></HEAD>
| [Begin Template content]
| <!-- Editable 1 -->
| [Page Conent]
| <!-- End Editable 1 -->
| [End Template content]
|
| Becomes
|
| <HEAD></HEAD>
| [Begin Template content]
| <!-- Editable 1 -->
| [Begin Template content]
| [Page Conent]
| [End Template content]
| <!-- End Editable 1 -->
| [EndTemplate content]
|
| This means post a gen I need to check all pages to see if this has occured
| and then re-create the page.
| ANY HELP WOULD BE GREATLY APPRECIATED!!
 

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