Carrotware.CMS.UI.Controls.WidgetContainer.OnPreRender C# (CSharp) Метод

OnPreRender() защищенный Метод

protected OnPreRender ( EventArgs e ) : void
e System.EventArgs
Результат void
        protected override void OnPreRender(EventArgs e)
        {
            base.OnPreRender(e);

            if (SiteData.IsWebView) {
                if (this.IsAdminMode) {
                    ctrl1 = GetCtrl("ucAdminWidgetContainer1", this);
                    ctrl2 = GetCtrl("ucAdminWidgetContainer2", this);
                } else {
                    ctrl1 = new Literal { Text = "\r\n" };
                    ctrl2 = new Literal { Text = "\r\n" };
            #if DEBUG
                    ctrl1 = new Literal { Text = "<span style=\"display: none;\" id=\"BEGIN-" + this.ClientID + "\"></span>\r\n" };
                    ctrl2 = new Literal { Text = "<span style=\"display: none;\" id=\"END-" + this.ClientID + "\"></span>\r\n" };
            #endif
                }
            }
        }