home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Objrepos / CSharp / Control.ascx.cs < prev    next >
Encoding:
INI File  |  2004-10-22  |  963 b   |  43 lines

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