BlogEngine.Core.Web.Controls.BlogBasePage.OnPreRenderComplete C# (CSharp) Method

OnPreRenderComplete() protected method

Raises the event after the event and before the page is rendered.
protected OnPreRenderComplete ( EventArgs e ) : void
e System.EventArgs /// An that contains the event data. ///
return void
        protected override void OnPreRenderComplete(EventArgs e)
        {
            base.OnPreRenderComplete(e);
            if (BlogSettings.Instance.UseBlogNameInPageTitles)
            {
                Page.Title = string.Format("{0} | {1}", BlogSettings.Instance.Name, Page.Title);
            }
        }