Asp.net怎么删除页面上的所有TextBox?
foreach (Control c in this.FindControl("form1").Controls) { if (c is TextBox) { ((TextBox)c).Text = ""; } }