Asp.net如何清空页面上的所有TextBox

Asp.net怎么删除页面上的所有TextBox?

  • freedom - 1年前

    foreach (Control c in this.FindControl("form1").Controls)
    {
        if (c is TextBox)
        {
            ((TextBox)c).Text = "";
        }
    }