using System; using System.Web; using System.Web.UI; public class MasterPageBase : MasterPage where T : ISessionObject { public PageContext AppContext { get; set; } protected override void OnInit(EventArgs e) { this.AppContext = new PageContext(HttpContext.Current); base.OnInit(e); } }