SenseNet.Portal.UI.PortletFramework.PropertyFieldPanel.RenderTitleInternal C# (CSharp) Method

RenderTitleInternal() static private method

static private RenderTitleInternal ( System.Web.UI.HtmlTextWriter writer, string title, string id ) : void
writer System.Web.UI.HtmlTextWriter
title string
id string
return void
        internal static void RenderTitleInternal(HtmlTextWriter writer, string title, string id)
        {
            writer.Write(String.Format(@"<h3 class=""sn-accordion-title""><a href='#" + id + "'>{0}</a></h3>", title));

        }