On the DWT place the title and meta tags in editable regions. Then
when you update the DWT and the pages, those tags will not be touched
in the pages.
<head>
<!-- #BeginEditable "DocTitle" -->
<title>Title here</title>
<!-- #EndEditable -->
<!-- #BeginEditable "DocDescription" -->
<meta name="description" content="Description here">
<!-- #EndEditable -->
<!-- #BeginEditable "DocKeywords" -->
<meta name="keywords" content="keywords here">
<!-- #EndEditable -->
</head>
Or (easier) combine the editable regions into one:
<head>
<!-- #BeginEditable "DocTitle" -->
<title>Title here</title>
<meta name="description" content="Description here">
<meta name="keywords" content="keywords here">
<!-- #EndEditable -->
</head>
The attached pages will retain the tags they have, or for the 1st
method, will adopt the default tags in the DWT.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support:
http://www.frontpagemvps.com/
"Tony Strazzeri" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>I have just started converting my web tfrom using shared borders and
> include pages to using Dynamic Web Template (DWT). It's really
> cool.
> A lot simpler than I expected.
>
> What I don't understand is how to customize the meta tags in the
> head
> block of each page. I have been judiciously maintaining these as
> recommended by various search engine optimization articles and
> software
> (SEO).
>
> I can't see how I can keep this data to help improve search engine
> crawlers to rank my pages.
>
> Thanks
> TonyS.
>