PC Review


Reply
Thread Tools Rate Thread

How to customize meta tags in individual pages using same DWT

 
 
Tony Strazzeri
Guest
Posts: n/a
 
      5th Feb 2006
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.

 
Reply With Quote
 
 
 
 
Ronx
Guest
Posts: n/a
 
      5th Feb 2006
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.
>



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      5th Feb 2006
And don't bother with keywords, as they are not used anyhow. Just do the
meta descriptions and let it go at that.

--
Murray
--------------
MVP FrontPage


"Ronx" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> 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.
>>

>
>



 
Reply With Quote
 
Joe Rohn
Guest
Posts: n/a
 
      5th Feb 2006
None of the "big guys" use keywords....there might still be some smaller
ones that do (I don't know of any offhand though) I usually still include
them more for a "just in case" scenario..but only on a home page. I have a
two minute rule though when doing it..and that is anything over two minutes
is totally wasting my time! :-)

--
Joe

Microsoft MVP FrontPage

FrontPage Users Forums:
http://www.timeforweb.com/frontpage

"Murray" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> And don't bother with keywords, as they are not used anyhow. Just do the
> meta descriptions and let it go at that.
>
> --
> Murray
> --------------
> MVP FrontPage
>
>
> "Ronx" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> 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.
>>>

>>
>>

>
>



 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      5th Feb 2006
It doesn't hurt to use them, as long as they a relevant to the content of the 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.
==============================================

"Joe Rohn" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> None of the "big guys" use keywords....there might still be some smaller ones that do (I don't
> know of any offhand though) I usually still include them more for a "just in case" scenario..but
> only on a home page. I have a two minute rule though when doing it..and that is anything over two
> minutes is totally wasting my time! :-)
>
> --
> Joe
>
> Microsoft MVP FrontPage
>
> FrontPage Users Forums:
> http://www.timeforweb.com/frontpage
>
> "Murray" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
>> And don't bother with keywords, as they are not used anyhow. Just do the meta descriptions and
>> let it go at that.
>>
>> --
>> Murray
>> --------------
>> MVP FrontPage
>>
>>
>> "Ronx" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
>>> 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.
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Joe Rohn
Guest
Posts: n/a
 
      5th Feb 2006
Agreed! I don't use any words that cannot also be seen in visible text.

--
Joe

Microsoft MVP FrontPage

FrontPage Users Forums:
http://www.timeforweb.com/frontpage

"Thomas A. Rowe" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> It doesn't hurt to use them, as long as they a relevant to the content of
> the 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.
> ==============================================
>
> "Joe Rohn" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> None of the "big guys" use keywords....there might still be some smaller
>> ones that do (I don't know of any offhand though) I usually still include
>> them more for a "just in case" scenario..but only on a home page. I have
>> a two minute rule though when doing it..and that is anything over two
>> minutes is totally wasting my time! :-)
>>
>> --
>> Joe
>>
>> Microsoft MVP FrontPage
>>
>> FrontPage Users Forums:
>> http://www.timeforweb.com/frontpage
>>
>> "Murray" <(E-Mail Removed)> wrote in message
>> news:%(E-Mail Removed)...
>>> And don't bother with keywords, as they are not used anyhow. Just do
>>> the meta descriptions and let it go at that.
>>>
>>> --
>>> Murray
>>> --------------
>>> MVP FrontPage
>>>
>>>
>>> "Ronx" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>> 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.
>>>>>
>>>>
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      5th Feb 2006
It doesn't help, and it *could* hurt, particularly if you have keywords that
do not match the page content.

--
Murray
--------------
MVP FrontPage


"Thomas A. Rowe" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> It doesn't hurt to use them, as long as they a relevant to the content of
> the 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.
> ==============================================
>
> "Joe Rohn" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> None of the "big guys" use keywords....there might still be some smaller
>> ones that do (I don't know of any offhand though) I usually still include
>> them more for a "just in case" scenario..but only on a home page. I have
>> a two minute rule though when doing it..and that is anything over two
>> minutes is totally wasting my time! :-)
>>
>> --
>> Joe
>>
>> Microsoft MVP FrontPage
>>
>> FrontPage Users Forums:
>> http://www.timeforweb.com/frontpage
>>
>> "Murray" <(E-Mail Removed)> wrote in message
>> news:%(E-Mail Removed)...
>>> And don't bother with keywords, as they are not used anyhow. Just do
>>> the meta descriptions and let it go at that.
>>>
>>> --
>>> Murray
>>> --------------
>>> MVP FrontPage
>>>
>>>
>>> "Ronx" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>> 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.
>>>>>
>>>>
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      5th Feb 2006
That is why I said it must be relevant to the page content.

--
==============================================
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.
==============================================

"Murray" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> It doesn't help, and it *could* hurt, particularly if you have keywords that do not match the page
> content.
>
> --
> Murray
> --------------
> MVP FrontPage
>
>
> "Thomas A. Rowe" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
>> It doesn't hurt to use them, as long as they a relevant to the content of the 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.
>> ==============================================
>>
>> "Joe Rohn" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> None of the "big guys" use keywords....there might still be some smaller ones that do (I don't
>>> know of any offhand though) I usually still include them more for a "just in case" scenario..but
>>> only on a home page. I have a two minute rule though when doing it..and that is anything over
>>> two minutes is totally wasting my time! :-)
>>>
>>> --
>>> Joe
>>>
>>> Microsoft MVP FrontPage
>>>
>>> FrontPage Users Forums:
>>> http://www.timeforweb.com/frontpage
>>>
>>> "Murray" <(E-Mail Removed)> wrote in message
>>> news:%(E-Mail Removed)...
>>>> And don't bother with keywords, as they are not used anyhow. Just do the meta descriptions and
>>>> let it go at that.
>>>>
>>>> --
>>>> Murray
>>>> --------------
>>>> MVP FrontPage
>>>>
>>>>
>>>> "Ronx" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
>>>>> 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.
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding meta tags to Excel web pages? MelB Microsoft Excel Programming 1 13th Dec 2006 02:53 AM
meta tags not showing on frame pages =?Utf-8?B?a2V5c2tlZXQ=?= Microsoft Frontpage 1 25th Apr 2006 09:50 AM
DWT & Meta tags for individual pages =?Utf-8?B?SGVsZW4=?= Microsoft Frontpage 6 17th Feb 2005 06:13 PM
Where can I create meta-tags for my web pages, in FP03? =?Utf-8?B?Q2hyaXNK?= Microsoft Frontpage 5 16th Nov 2004 01:11 AM
Pages with Meta tags don't display graphics in my IE 6 Alan M Windows XP Internet Explorer 1 7th Nov 2003 05:17 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:04 AM.