请问如何才能枚举同一个网页上的控件???
假设页面上有TextBox1,TextBox2.....TextBox20
设一个按钮
要一次性清空这些TextBox.Text 如何才能用循环做到?
------解决方案--------------------foreach (Control xc in this.form1.Controls)
{
if (typeof(System.Web.UI.WebControls.TextBox) == xc.GetType())
{
xc.Visible = false;
}
}