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 jiaotong
  12. {
  13. /// <summary>
  14. /// WebForm1 的摘要说明。
  15. /// </summary>
  16. public class WebForm1 : System.Web.UI.Page
  17. {
  18. protected System.Web.UI.WebControls.TextBox TextBox1;
  19. protected System.Web.UI.WebControls.Label Label1;
  20. protected System.Web.UI.WebControls.Label Label2;
  21. protected System.Web.UI.WebControls.Label Label3;
  22. protected System.Web.UI.WebControls.Button Button1;
  23.     public const int MaxChar = 40;
  24. //变量Count跟踪记录所输入的申辩字符的数量。它通过该事件每次发生时
  25. //(也就是用户输入一个字符时)获得被用户输入的文本字符串长度来实现该功能。
  26. public int Count = 0;
  27. private void Page_Load(object sender, System.EventArgs e)
  28. {
  29. // 在此处放置用户代码以初始化页面
  30. }
  31. #region Web 窗体设计器生成的代码
  32. override protected void OnInit(EventArgs e)
  33. {
  34. //
  35. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  36. //
  37. InitializeComponent();
  38. base.OnInit(e);
  39. }
  40. /// <summary>
  41. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  42. /// 此方法的内容。
  43. /// </summary>
  44. private void InitializeComponent()
  45. {    
  46. this.TextBox1.TextChanged += new System.EventHandler(this.TextBox1_TextChanged);
  47. this.Button1.Click += new System.EventHandler(this.Button1_Click);
  48. this.Load += new System.EventHandler(this.Page_Load);
  49. }
  50. #endregion
  51.         
  52. private void Button1_Click(object sender, System.EventArgs e)
  53. {
  54. }
  55. private void TextBox1_TextChanged(object sender, System.EventArgs e)
  56. {
  57. string mystring = TextBox1.Text;
  58. Count = mystring.Length;
  59. if(Count > MaxChar)
  60. {
  61. Label3.Text = "只允许输入40个字符";
  62. }
  63. else
  64. {
  65. Label3.Text = "请继续输入";
  66. }
  67. }
  68. }
  69. }