Marc Uberstein
Marc Uberstein

Reputation: 12541

Generate META keywords from html content

Is there some way of dynamically creating keywords.

I want to select random words on current page, maximum of 20, and add it to my META information.

So when I update the page, keywords are automatically updated etc.

Is this possible??

Upvotes: 2

Views: 1545

Answers (3)

slfan
slfan

Reputation: 9129

In ASP.NET 4.0 you can use the new properties MetaKeywords and MetaDescription:

protected void Page_Load(object sender, EventArgs e)
{
   //Adding Page meta tags information
   this.Page.MetaKeywords = “ASP.Net 4.0 SEO Meta Tag”;
   this.Page.MetaDescription = “Serializing and Deserializing Thoughts..”;
}

But I don't think that it would make sense to generated random keywords. The search engine would look for keywords anyway. I would add content specific keywords.

Nobody really knows how search engines create their index. If you fake your keywords, they are not used, but I could imagine that real keywords that correspond with the content could rate up a page. At least that's what google is telling us.

Upvotes: 0

Random Guy
Random Guy

Reputation: 2900

Tools and scripts cannot decide what are suitable keywords for your website, you've to do-it-yourself. Pick some of the important keywords which you feel a user will type for searching the content which is available on your website.

Upvotes: 2

Drakkonite
Drakkonite

Reputation: 507

Please have a look at this thread, you may want to give up on this after reading. It's not worth the effort.

How can I automatically generate SEO keywords based on dynamic page contents?

Kris

Upvotes: 4

Related Questions