From 0ae3194bdd3dd29e5ad1450328a19f7fdbe53ea9 Mon Sep 17 00:00:00 2001 From: wzp <2040239371@qq.com> Date: 星期二, 18 十月 2022 15:26:23 +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