Live Chat with Operator

ASP.NET Video Starter Kit - Meta Tag Settings

 

Setting page title, description, keywords are most important factors for promoting, indexing and drive visitors towards website. It's the most important factor for Search Engine Optimization.

ASP.NET Video Starter Kit introduce centralize way to setup page title, description and keywords for every static and dynamic pages without going to edit each and every page.

Key benefits of centralize page settings:

  • It helps developer or site maintainer to easily manage whole website meta information in single location.
  • It spares web master time while editing meta tags for each and every page.
  • It helps developer or site maintainer to manage meta information for multiple purposes using multiple domains. e.g if you customize video starter kit application for three different use (cars, celebrity, pets) then adjusting meta information for every page for each use is a very complex and time consuming task. Through centralize location you can adjust meta information easily for (cars, celebrity, pets).

Location:

Meta tag setting page is located at /app_code/meta/ directory.

Usage:

Using meta page settings section, you can set the following information for each and every page.

  • Page Title
  • Page Description
  • Page Keywords

Sample Use / Customization:

e.g you can set meta information for Default.aspx (home page) as

 

public static void META_DEFAULTPAGE(System.Web.UI.Page _pg, System.Web.UI.HtmlControls.HtmlHead _hd)
{
// Page Title
_pg.Title = Config.GetUrlCaption() + " - Browse, Share & Watch Videos";
HtmlMeta hm = new HtmlMeta();

// Page Meta Keywords
hm.Name = "keywords";
hm.Content = "channels, browse, share, watch, reviews,videos";
_hd.Controls.Add(hm);

// Page Meta Description
HtmlMeta hm1 = new HtmlMeta();
hm1.Name = "description";
hm1.Content = "Title: Browse, Share & Watch Videos, Category: Type: photo, images, videos, blog posts";
_hd.Controls.Add(hm1);
}

 

 

Video Starter Kit Detail or View Demo.

© 2007 - 2012, mediasoftpro.com  | Site Map | Privacy Policy | Terms of Use