X

ASP.NET 4.0 SEO features: Description and keywords

Another new SEO feature that ASP.NET 4.0 introduces is support for meta description and keywords. I think these are the most abused SEO features ever and search engines are very careful when considering these meta tags but I am very sure that there are still engines that respect those tags and that’s what makes these new features very useful.

Let’s see now how to set meta keywords and description to page. At first let’s create empty ASP.NET page and let’s see through browser the mark up of this page. Mark up should look something like this.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" > 
<head> 
<title>  
</title> 
</head> 
<body>

Now let’s write Load event for page. In this event we set meta description and keywords programmatically. Just take the following code in language you prefer.

protected void Page_Load(object sender, EventArgs e)
{
    Page.MetaDescription = "This is my rabbits page";
    Page.MetaKeywords = "rabbit, rabbits, bunny, bunnies";
}

Let’s run web application again and see page source through browser again. You should see something like this.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<html xmlns="http://www.w3.org/1999/xhtml" > 
<head> 
<title> 
</title> 
<meta name="description" content="This is my rabbits page" /> 
<meta name="keywords" content="rabbit, rabbits, bunny, bunnies" />
</head> 
<body>

There is one little thing that is annoying for me: meta tags are not splitted to separate lines. To make mark up easier to read I had to insert line breaks manually. But server-side code, as you can see, is simple and straightforward.

Liked this post? Empower your friends by sharing it!
Categories: ASP.NET

View Comments (7)

  • Thanks for the info
    Is therer any supports for keywords in contentpages?
    I mean... if you add meta definitions in the content page, they wont overwrite the masterpages definitions, they will duplicate

    Thanks

  • Great addition and thanks for sharing. Yes, the meta data is the most abused as far as seo goes but we believe that it is still very valid in a few ways. Keywords may not get 'looked' at with the same importance by engines but having a few of the main ones can never hurt. The main reason they are abused is for keyword stuffing and repetition, so be sure to only use your main keywords for that page and be sure the content is related to those keywords. The meta description should have your main keyword (first of your meta keywords) in there and then remember this is what comes up in the SERP (search engine results page) so make this catchy and be the answer to what people are looking for in relation to their keywords.

Related Post