WebForm1.aspx.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  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 PCSWebApp1
  12. {
  13. /// <summary>
  14. /// Summary description for WebForm1.
  15. /// </summary>
  16. public class WebForm1 : System.Web.UI.Page
  17. {
  18.       protected System.Web.UI.WebControls.Label resultLabel;
  19.       protected System.Web.UI.WebControls.Button triggerButton;
  20.    
  21. private void Page_Load(object sender, System.EventArgs e)
  22. {
  23. // Put user code to initialize the page here
  24. }
  25. #region Web Form Designer generated code
  26. override protected void OnInit(EventArgs e)
  27. {
  28. //
  29. // CODEGEN: This call is required by the ASP.NET Web Form Designer.
  30. //
  31. InitializeComponent();
  32. base.OnInit(e);
  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.triggerButton.Click += new System.EventHandler(this.triggerButton_Click);
  41.          this.Load += new System.EventHandler(this.Page_Load);
  42.       }
  43. #endregion
  44.       private void triggerButton_Click(object sender, System.EventArgs e)
  45.       {
  46.          resultLabel.Text = "Button clicked!";
  47.       }
  48. }
  49. }