protected void ClearTextBox()
{
Parallel.ForEach<Control>(this.Controls.Cast<Control>(), c =>
{
if (c is TextBox)
{
TextBox temp = (TextBox)c;
temp.Text = null;
}
});
}