using   System;  
   
  namespace   sys.ck  
  {  
  ///   <summary>  
  ///   overPage   的摘要说明。  
  ///   </summary>  
   
  public   class   overPage   :   System.Web.UI.Page  
  {  
  public   overPage()  
  {  
  //  
  //   TODO:   在此处添加构造函数逻辑  
  //  
  }  
  protected   override   void   OnLoad(EventArgs   e)  
  {  
  base.OnLoad   (e);  
  Page.RegisterStartupScript("1","<script>alert('重写OnLoad事件')</script>");  
  }  
   
  }  
  }   

 

 

protected   override   void   OnLoad(EventArgs   e)  
  {  
      if(Session["LoginUserId"]==null||   Session["LoginUserId"].ToString().Trim()=="")  
      {  
            Session.RemoveAll();  
            Response.Redirect("../login.aspx",true);  
      }  
      base.OnLoad(e);  
  }
 

posted on 2009-06-30 14:03  sweting  阅读(236)  评论(0编辑  收藏  举报