Code :
public void ClearControls(Control c)
{
foreach (Control c1 in c.Controls)
{
if (c1.GetType() == typeof(TextBox))
{
((TextBox)c1).Text = "";
}
if (c1.HasControls())
{
ClearControls(c1);
}
}
}
ClearControls(Page);
hour of code activities,code.org dance party,hour of code | dance party,google studio code,code.org sign in,code org join,code.org minecraft,hour of code,types of coding,computer coding for beginners,coding websites,coding games,characteristics of algorithm,algorithms for beginners,how to write an algorithm,algorithm synonym,algorithm examples,types of algorithm,what is algorithm in computer,algorithm tutorial
Comments
Post a Comment