Ejemplo n.º 1
0
        public static IHtmlString RenderMetaKeywords(this HtmlHelper htmlHelper)
        {
            string pageTitle = SiteConfigurationReader.GetAppSettingsString("MetaKeywords");

            return(MvcHtmlString.Create(pageTitle));
        }
Ejemplo n.º 2
0
        public static IHtmlString RenderPageTitle(this HtmlHelper htmlHelper)
        {
            string pageTitle = SiteConfigurationReader.GetAppSettingsString("PageTitle") + " | ";

            return(MvcHtmlString.Create(pageTitle));
        }