/Reports/WebForm2.aspx.cs
C# | 44 lines | 30 code | 3 blank | 11 comment | 0 complexity | 359a7a7ab24b71bfff4790582a7929d7 MD5 | raw file
1using System; 2using System.Collections; 3using System.ComponentModel; 4using System.Data; 5using System.Drawing; 6using System.Web; 7using System.Web.SessionState; 8using System.Web.UI; 9using System.Web.UI.WebControls; 10using System.Web.UI.HtmlControls; 11 12namespace Reports 13{ 14 /// <summary> 15 /// Summary description for WebForm2. 16 /// </summary> 17 public class WebForm2 : 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}