How-to: Adding META Keywords & META Description with ASP.NET 4

In a previous post I showed how-to add specific page keywords & descriptions while using ASP.NET with Master Pages. Compared with the latest ASP.NET 4 version, this technique was not coder friendly.

In ASP.NET 4 adding page keywords and descriptions is as easy as this shown below.

    protected void Page_Load(object sender, EventArgs e)
{
// page keywords
Page.MetaKeywords = "keywords go here...";
// page description
Page.MetaDescription = "description go here...";
}

Overall, page keywords & descriptions are still important for SEO success along with page titles and page content. If you need any help with your website search rankings please feel free to contact Force 5 for some guidance.


Categories

Archives