hi,
Control collection contain all control of page using following code you may find all text box on page.
foreach (var c in this.Controls.OfType<TextBox>()){ c.Text = c.Name;}
hope this will help you.