From 37080f5d0add35dc528212ece83adff1db6c50ee Mon Sep 17 00:00:00 2001 From: wzp <2880584989@qq.com> Date: 星期四, 16 九月 2021 15:54:27 +0800 Subject: [PATCH] 更新 --- web/Model/MasterPageBase.cs | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/web/Model/MasterPageBase.cs b/web/Model/MasterPageBase.cs index 88c3311..e2d3c99 100644 --- a/web/Model/MasterPageBase.cs +++ b/web/Model/MasterPageBase.cs @@ -1,15 +1,15 @@ -锘� +锘� using System; using System.Web; using System.Web.UI; public class MasterPageBase<T> : MasterPage where T : ISessionObject { - public PageContext<T> AppContext { get; set; } + public PageContext<T> AppContext { get; set; } - protected override void OnInit(EventArgs e) - { - this.AppContext = new PageContext<T>(HttpContext.Current); - base.OnInit(e); - } + protected override void OnInit(EventArgs e) + { + this.AppContext = new PageContext<T>(HttpContext.Current); + base.OnInit(e); + } } -- Gitblit v1.9.1