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. using PCSWebClient1.myWebService;
  12. namespace PCSWebClient1
  13. {
  14. /// <summary>
  15. /// Summary description for WebForm1.
  16. /// </summary>
  17. public class WebForm1 : System.Web.UI.Page
  18. {
  19.       protected System.Web.UI.WebControls.Label resultLabel;
  20.       protected System.Web.UI.WebControls.Button triggerButton;
  21.    
  22. private void Page_Load(object sender, System.EventArgs e)
  23. {
  24. // Put user code to initialize the page here
  25. }
  26. #region Web Form Designer generated code
  27. override protected void OnInit(EventArgs e)
  28. {
  29. //
  30. // CODEGEN: This call is required by the ASP.NET Web Form Designer.
  31. //
  32. InitializeComponent();
  33. base.OnInit(e);
  34. }
  35. /// <summary>
  36. /// Required method for Designer support - do not modify
  37. /// the contents of this method with the code editor.
  38. /// </summary>
  39. private void InitializeComponent()
  40. {    
  41.          this.triggerButton.Click += new System.EventHandler(this.triggerButton_Click);
  42.          this.Load += new System.EventHandler(this.Page_Load);
  43.       }
  44. #endregion
  45.       private void triggerButton_Click(object sender, System.EventArgs e)
  46.       {
  47.          Service1 myService = new Service1();
  48.          resultLabel.Text = myService.CanWeFixIt();
  49.       }
  50. }
  51. }