C#中重写OnInit,在SL中如何实现【在线等】
/// <summary> /// 资料管理页面基类 /// </summary> public class AdminWebPageBase : PageBase { protected override void OnInit(EventArgs e) { //检测用户登录状态 if (HttpContext.Current.Session["CurrentUser"] == null) { HttpContext.Current.Response.Redirect("~/docmanage/framenotlogin.aspx"); } base.OnInit(e); } }