你先设置个断点,按F5调试,看看程序调用这个事件了没,如果没有调用,你就看看在前台代码中,按钮代码有没有写点击事件。试了没问题再把情况说详细吧。
楼下的那些回答是错误的,赋值只需要一个=号,判断中,才需要用两个==来判断是否相等的
protected void Button10_Click(object sender, EventArgs e)
{
TextBox1.Text =="";
TextBox2.Text == "";
TextBox3.Text == "";
TextBox5.Text == "";
}
TextBox1.Text == "";
TextBox2.Text == "";
TextBox3.Text == "";
TextBox5.Text == "";
两个等于号
看看这个按钮的事件有没有加上
初始化时,加上这句
this.Button10.Click += new System.EventHandler(this.Button10_Click);
TextBox1.Clear();
TextBox2.Clear();
TextBox3.Clear()
TextBox4.Clear();