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

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 yanzheng
  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.Label Label4;
  22. protected System.Web.UI.WebControls.TextBox TextBox1;
  23. protected System.Web.UI.WebControls.TextBox TextBox2;
  24. protected System.Web.UI.WebControls.TextBox TextBox3;
  25. protected System.Web.UI.WebControls.TextBox TextBox4;
  26. protected System.Web.UI.WebControls.Label Label5;
  27. protected System.Web.UI.WebControls.Label Label6;
  28. protected System.Web.UI.WebControls.Label Label7;
  29. protected System.Web.UI.WebControls.Label Label8;
  30. protected System.Web.UI.WebControls.TextBox TextBox5;
  31. protected System.Web.UI.WebControls.TextBox TextBox6;
  32. protected System.Web.UI.WebControls.TextBox TextBox7;
  33. protected System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1;
  34. protected System.Web.UI.WebControls.CompareValidator CompareValidator1;
  35. protected System.Web.UI.WebControls.RangeValidator RangeValidator1;
  36. protected System.Web.UI.WebControls.Button Button1;
  37. protected System.Web.UI.WebControls.RegularExpressionValidator RegularExpressionValidator1;
  38. protected System.Web.UI.WebControls.RegularExpressionValidator RegularExpressionValidator2;
  39. protected System.Web.UI.WebControls.RegularExpressionValidator RegularExpressionValidator3;
  40. protected System.Web.UI.WebControls.RegularExpressionValidator RegularExpressionValidator4;
  41. protected System.Web.UI.WebControls.TextBox TextBox8;
  42. private void Page_Load(object sender, System.EventArgs e)
  43. {
  44. // 在此处放置用户代码以初始化页面
  45. }
  46. #region Web 窗体设计器生成的代码
  47. override protected void OnInit(EventArgs e)
  48. {
  49. //
  50. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  51. //
  52. InitializeComponent();
  53. base.OnInit(e);
  54. }
  55. /// <summary>
  56. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  57. /// 此方法的内容。
  58. /// </summary>
  59. private void InitializeComponent()
  60. {    
  61. this.Button1.Click += new System.EventHandler(this.Button1_Click);
  62. this.Load += new System.EventHandler(this.Page_Load);
  63. }
  64. #endregion
  65. private void Button1_Click(object sender, System.EventArgs e)
  66. {
  67. if(Page.IsValid)
  68. {
  69.    Response.Write("页面正确");
  70. }
  71. }
  72. }
  73. }