WebForm1.aspx.cs
上传用户:yiyuerguo
上传日期:2014-09-27
资源大小:3781k
文件大小:2k
源码类别:

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 first
  12. {
  13. /// <summary>
  14. /// WebForm1 的摘要说明。
  15. /// </summary>
  16. public class WebForm1 : System.Web.UI.Page
  17. {
  18. protected System.Web.UI.WebControls.Label Label1;
  19. protected System.Web.UI.WebControls.Label Label2;
  20. protected System.Web.UI.WebControls.Label Label3;
  21. protected System.Web.UI.WebControls.TextBox TextBox1;
  22. protected System.Web.UI.WebControls.TextBox TextBox2;
  23. protected System.Web.UI.WebControls.TextBox TextBox3;
  24. protected System.Web.UI.WebControls.Button Button1;
  25. protected System.Web.UI.WebControls.Label Label4;
  26. private void Page_Load(object sender, System.EventArgs e)
  27. {
  28. // 在此处放置用户代码以初始化页面
  29. }
  30. #region Web 窗体设计器生成的代码
  31. override protected void OnInit(EventArgs e)
  32. {
  33. //
  34. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  35. //
  36. InitializeComponent();
  37. base.OnInit(e);
  38. }
  39. /// <summary>
  40. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  41. /// 此方法的内容。
  42. /// </summary>
  43. private void InitializeComponent()
  44. {    
  45. this.Button1.Click += new System.EventHandler(this.Button1_Click);
  46. this.Load += new System.EventHandler(this.Page_Load);
  47. }
  48. #endregion
  49. private void Button1_Click(object sender, System.EventArgs e)
  50. {
  51. double FanQian = double.Parse(TextBox1.Text);
  52. double ZheKou  = double.Parse(TextBox2.Text);
  53. double ZongJi  = FanQian*ZheKou ;
  54. TextBox3.Text = Convert.ToString(ZongJi);
  55. }
  56. }
  57. }