protected void Page_Init(object sender, EventArgs e) { c = new BackendPageCommon(this.Context, this.ViewState); c.InitialLoggerOfUI(this.GetType()); Page.MaintainScrollPositionOnPostBack = true; }
protected void Page_Init(object sender, EventArgs e) { c = new BackendPageCommon(this.Context, this.ViewState); c.InitialLoggerOfUI(this.GetType()); ltrBackStageName.Text = Resources.Lang.BackStageName; Page.Title = ltrBackStageName.Text; }
protected void Page_Init(object sender, EventArgs e) { c = new BackendPageCommon(this.Context, this.ViewState); c.InitialLoggerOfUI(this.GetType()); artPub = new ArticlePublisherLogic(c); empAuth = new EmployeeAuthorityLogic(c); Page.Title = Resources.Lang.BackStageName; Page.MaintainScrollPositionOnPostBack = true; }
protected void Page_Init(object sender, EventArgs e) { c = new BackendPageCommon(this.Context, this.ViewState); c.InitialLoggerOfUI(this.GetType()); empAuth = new EmployeeAuthorityLogic(c); if (c.seCultureNameOfBackend == "en") { useEnglishSubject = true; } if (!IsPostBack) { LoadUIData(); } }
/// <summary> /// 更新網頁內容的前台子項目排序欄位 /// </summary> public UpdateArticleSortFieldOfFrontStage(HttpContext context) : base(context) { c = new BackendPageCommon(context, null); c.InitialLoggerOfUI(this.GetType()); }