コード例 #1
0
ファイル: Page.cs プロジェクト: andrewmaia/Atomo
        private void Create()
        {
            this.RegisterLinks();
            this.SetCssID();
            this.SetCssIsLocal();
            this.SetJsIsTop();
            this.SetJsIsLocal();

            jsContainer.Create(null, this.GetJsLinked(), this.GetJs());
            cssContainer.Create(null, this.GetCssLinked(), this.GetCss());
        }
コード例 #2
0
ファイル: MasterPage.cs プロジェクト: andrewmaia/Atomo
        public void Create()
        {
            this.RegisterLinks();
            this.SetCssID();
            this.SetCssIsLocal();
            this.SetJsIsTop();
            this.SetJsIsLocal();

            jsContainer.Create(this.GetJsCommon(), null, this.GetJs());
            cssContainer.Create(this.GetCssCommon(), null, this.GetCss());
        }