Click here to Skip to main content
Licence CPOL
First Posted 9 Jun 2010
Views 11,254
Bookmarked 28 times

Search Engine Optimization (SEO) Enhancement in ASP.NET 4.0

By | 9 Jun 2010 | Article
This article explains the MetaKeywords and MetaDescription properties related to SEO enhancement in ASP.NET 4.0.

Table of Contents

Introduction

As we all know, Meta description (META description tag) is very significant from the SEO point of view. The META Description Tag is a vital part which identifies a page and search engines take this META tag very sincerely. To improve the search relevancy of pages is to make sure you always put relevant “keywords” and “description<meta> tags within the <head> section of your HTML.

<head runat="server">
    <title>SEO Demo</title>
    <meta name="description" content="Page keywords." />
    <meta name="keywords" content="ASP.NET 4, SEO enhancements." />
</head>

In ASP.NET 4.0, one of the notable enhancements is the addition of two new properties to the Page class:- MetaKeywords and MetaDescription. These put the “keywords” and “description<meta> tags within the <head> section of the page automatically.

When is it Useful?

This is particularly useful where your websites are using master-pages – and the section ends up in a .master file. You can now set the new MetaKeywords and MetaDescription properties in the .aspx page and their values will be automatically rendered by the section within the master page.

Using MetaKeywords and MetaDescription Properties

You can directly define Meta Keywords and Meta Description through @Page attribute as:

<%@ Page
    Title="SEO Demo"
    Language="C#"
    MasterPageFile="~/MasterPage.master"
    AutoEventWireup="true"
    CodeFile="Default.aspx.cs"
    Inherits="_Default"
    MetaKeywords="Page key words"
    MetaDescription="Page description"
%> 

Or you can also define the same programmatically in the Page_Load event of the Page class as:

protected void Page_Load(object sender, EventArgs e)
    {
        this.Page.MetaKeywords = "Page key words";
        this.Page.MetaDescription = "Page description";
    }

From both of the above options, the markup gets rendered in the web browser as:

<head>
   <title>SEO Demo</title>
   <meta name="description" content="Page description" />
   <meta name="keywords" content="Page key words" />
</head>

One important point should be noted that if you set the values programmatically, values set declaratively in either the section or via the @Page attribute will be overridden.

If you want to update the meta tag content by keeping the old content intact, use the following technique:

protected void Page_Load(object sender, EventArgs e)
    {
        this.Page.MetaKeywords += " - NewPage key words.";
        this.Page.MetaDescription += " - New Page description.";
    }

And now the markup that gets rendered in the web browser is:

<head>
   <title>SEO Demo</title>
   <meta name="description" content="Page description - New Page description."/>
   <meta name="keywords" content="Page key words - NewPage key words." />
</head>

Winding Up

So this is really a nice enhancement in ASP.NET 4.0 that provides us more flexibilities in defining meta tag contents.

History

  • 9th June, 2010 -- Article updated (Added table of contents)
  • 9th June, 2010 -- Original version posted

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Samir NIGAM

Team Leader

India India

Member

SAMIR NIGAM is a CodeProject MVP, a Microsoft Certified Technology
Specialist (MCTS)
as well as a Microsoft Certified Professional Developer (MCPD)
in C# for web-based applications. He is an insightful IT professional with
results-driven comprehensive technical skill having rich, hands-on work experience
in web-based applications using ASP.NET, C#, AJAX, Microsoft
Enterprise Library
, MS SQL Server 2005.
He has earned his master degree (MCA) from U.P. Technical University, Lucknow,
INDIA, his post graduate dipoma (PGDCA ) from Institute of Engineering and
Rural Technology, Allahabad, INDIA and his bachelor degree (BSc - Mathematics)
from University of Allahabad, Allahabad, INDIA.
He has good knowledge of Object Oriented Programming, 3-Tier Architecture
and Algorithm Analysis & Design as well as good command over cross-browser
client side programming using JavaScript.
Awards:



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questioncan i use it for my website Pinmemberductri22:48 30 Jan '12  
GeneralMy vote of 1 PinmemberMiroslav Sommer22:29 23 Nov '10  
GeneralMy vote of 4 Pinmemberlovejun14:21 17 Aug '10  
GeneralMy vote of 2 Pinmemberarchippus3:30 15 Jun '10  
GeneralGreat article PinmemberSantiago Santos Cortizo20:32 14 Jun '10  
GeneralGood One PinmemberViral Upadhyay2:43 9 Jun '10  
GeneralRe: Good One PinmemberSamir NIGAM3:08 9 Jun '10  
Generalmore info PinmemberMattia Baldinger1:17 9 Jun '10  
GeneralRe: more info PinmemberSamir NIGAM3:15 9 Jun '10  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 9 Jun 2010
Article Copyright 2010 by Samir NIGAM
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid