public
string
HomeMetaTags()
{
System.Text.StringBuilder strMetaTag =
new
System.Text.StringBuilder();
strMetaTag.AppendFormat(
@"<meta content='{0}' name='Keywords'/>"
,
"Home Action Keyword"
);
strMetaTag.AppendFormat(
@"<meta content='{0}' name='Descption'/>"
,
"Home Description Keyword"
);
return
strMetaTag.ToString();
}
@Html.Raw(ViewBag.MetaTag)
No comments:
Post a Comment