home *** CD-ROM | disk | FTP | other *** search
/ ip-72-10-208-29.nwptny.ntcnet.net / ip-72-10-208-29.nwptny.ntcnet.net.tar / ip-72-10-208-29.nwptny.ntcnet.net / newhartsystems / ASP / Global.asax.cs < prev    next >
Text File  |  2007-11-28  |  1KB  |  77 lines

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Web;
  5. using System.Web.SessionState;
  6.  
  7. namespace Order 
  8. {
  9.     /// <summary>
  10.     /// Summary description for Global.
  11.     /// </summary>
  12.     public class Global : System.Web.HttpApplication
  13.     {
  14.         /// <summary>
  15.         /// Required designer variable.
  16.         /// </summary>
  17.         private System.ComponentModel.IContainer components = null;
  18.  
  19.         public Global()
  20.         {
  21.             InitializeComponent();
  22.         }    
  23.         
  24.         protected void Application_Start(Object sender, EventArgs e)
  25.         {
  26.  
  27.         }
  28.  
  29.         protected void Session_Start(Object sender, EventArgs e)
  30.         {
  31.  
  32.         }
  33.  
  34.         protected void Application_BeginRequest(Object sender, EventArgs e)
  35.         {
  36.  
  37.         }
  38.  
  39.         protected void Application_EndRequest(Object sender, EventArgs e)
  40.         {
  41.  
  42.         }
  43.  
  44.         protected void Application_AuthenticateRequest(Object sender, EventArgs e)
  45.         {
  46.  
  47.         }
  48.  
  49.         protected void Application_Error(Object sender, EventArgs e)
  50.         {
  51.  
  52.         }
  53.  
  54.         protected void Session_End(Object sender, EventArgs e)
  55.         {
  56.  
  57.         }
  58.  
  59.         protected void Application_End(Object sender, EventArgs e)
  60.         {
  61.  
  62.         }
  63.             
  64.         #region Web Form Designer generated code
  65.         /// <summary>
  66.         /// Required method for Designer support - do not modify
  67.         /// the contents of this method with the code editor.
  68.         /// </summary>
  69.         private void InitializeComponent()
  70.         {    
  71.             this.components = new System.ComponentModel.Container();
  72.         }
  73.         #endregion
  74.     }
  75. }
  76.  
  77.