Meta data and google searchs.

  • Thread starter Thread starter UJ
  • Start date Start date
U

UJ

How do I add meta data to my pages so that google will 'find' the pages ?

TIA - Jeff.
 
Dim oMetaCopyright As New HtmlMeta
Dim oMetaAuthor As New HtmlMeta

With oMetaCopyright
.Name = "Copyright"
.Content = "Copyright (c) September 2006 SomeCompany All Rights
Reserved"
End With

With oMetaAuthor
.Name = "Author"
.Content = "Jay S Pondy"
End With

Page.Header.Controls.Add(oMetaCopyright)
Page.Header.Controls.Add(oMetaAuthor)
 

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

Back
Top