for

ASP.NET(C#)中遍历所有控件
.NET

ASP.NET(C#)中遍历所有控件

352 1

for (int i = 0; i < this.Controls.Count; i++) { foreach (System.Web.UI.Control control in this.Controls[i].Controls) { if (control is TextBox) (control as TextBox).Text = ""; } } foreach (Control cl in this.Page.FindControl("Form1")