请求高手: ASP.net网页设计,C#编程 要清空几个文本框怎么清空不了 (取消按钮清空所输入的内容)

2025-01-07 07:57:24
推荐回答(5个)
回答1:

你先设置个断点,按F5调试,看看程序调用这个事件了没,如果没有调用,你就看看在前台代码中,按钮代码有没有写点击事件。试了没问题再把情况说详细吧。
楼下的那些回答是错误的,赋值只需要一个=号,判断中,才需要用两个==来判断是否相等的

回答2:

protected void Button10_Click(object sender, EventArgs e)
{
TextBox1.Text =="";
TextBox2.Text == "";
TextBox3.Text == "";
TextBox5.Text == "";
}

回答3:

TextBox1.Text == "";
TextBox2.Text == "";
TextBox3.Text == "";
TextBox5.Text == "";

两个等于号

回答4:

看看这个按钮的事件有没有加上
初始化时,加上这句
this.Button10.Click += new System.EventHandler(this.Button10_Click);

回答5:

TextBox1.Clear();
TextBox2.Clear();
TextBox3.Clear()
TextBox4.Clear();