Default.aspx.cs 1008 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. namespace SunRoxmServer
  12. {
  13. /// <summary>
  14. /// Summary description for _Default.
  15. /// </summary>
  16. public class _Default : System.Web.UI.Page
  17. {
  18. private void Page_Load(object sender, System.EventArgs e)
  19. {
  20. // Put user code to initialize the page here
  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. /// <summary>
  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. }