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 / WebForm1.aspx.cs < prev    next >
Text File  |  2007-11-28  |  1KB  |  45 lines

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11.  
  12. namespace Order
  13. {
  14.     /// <summary>
  15.     /// Summary description for WebForm1.
  16.     /// </summary>
  17.     public class WebForm1 : System.Web.UI.Page
  18.     {
  19.         private void Page_Load(object sender, System.EventArgs e)
  20.         {
  21.             // Put user code to initialize the page here
  22.         }
  23.  
  24.         #region Web Form Designer generated code
  25.         override protected void OnInit(EventArgs e)
  26.         {
  27.             //
  28.             // CODEGEN: This call is required by the ASP.NET Web Form Designer.
  29.             //
  30.             InitializeComponent();
  31.             base.OnInit(e);
  32.         }
  33.         
  34.         /// <summary>
  35.         /// Required method for Designer support - do not modify
  36.         /// the contents of this method with the code editor.
  37.         /// </summary>
  38.         private void InitializeComponent()
  39.         {    
  40.             this.Load += new System.EventHandler(this.Page_Load);
  41.         }
  42.         #endregion
  43.     }
  44. }
  45.