From 1a81b518e0edd87a310a5b477773657e23d49cbd Mon Sep 17 00:00:00 2001 From: yzh <snbbt@21cn.com> Date: 星期四, 30 九月 2021 17:53:10 +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