Archive for the ‘Optimization’ Category
Custom Meta Tags
23
Mar
Many search engines uses Mata tags for searching websites contents. In ASP.NET we can make separate meta tags for all pages from database or any other techniques instead of using one masterpage meta tags.
Call following function in page load of every page or in master page.
public void BindPageMetasandTitle()
{
HtmlMeta MetaDescription = new HtmlMeta();
HtmlMeta MetaKeywords = new HtmlMeta();
MetaDescription.Name = "Description";
MetaKeywords.Name = "Keywords";
....Read Full Article