So in order to make my site more search engine friendly,
I am making my meta descriptions dynamic so they're different on each page.
Simple code,
CODE
Dim metaDescription As New HtmlMeta
metaDescription.Name = "description"
metaDescription.Content = ad.Description + " This is a test"
Page.Header.Controls.Add(metaDescription)
I have two questions,
1. When using the above code it changes the format of the header.
For example standard is title, description, keywords ect. . .
Now it enters the description, still inside the head tags, but it's last.
(title, keywords, link to .css, description)
Does anyone know if this is okay or not?????
2. Assuming that it doesn't matter when the description tag shows up in the head,
Does anyone know of a way to limit the description?
Otherwise some of the pages will have maybe 100 words in the description, and I have read that it should really be just a short summary.
Thank you to all.
Daniel