在asp.net里,点击"清空"button时,所有TextBox的Text变空,这是如何实现

如题,请求高手指导!
2024年11月15日 11:49
有3个网友回答
网友(1):

在button清空时间里写
this.txtbox.Text="";

this.textBox1.Clear();

this.txtbox.Text=null;
所有的TextBox控件都写

网友(2):


网友(3):

也可以在前台用脚本实现,var a=document.getelementbyid("textboxid");
a="";