foreach (Control control in this.Controls)
{
if (control.GetType().Name.Equals("TextBox"))
{
((TextBox)control).Text = string.Empty;
}
}
2021-07-18 11:26:30
foreach (Control control in this.Controls)
{
if (control.GetType().Name.Equals("TextBox"))
{
((TextBox)control).Text = string.Empty;
}
}