public void ClearTextBoxes(Control ctr)
{
foreach (Control ctrl in ctr.Controls)
{
if (ctrl is TextBox)
{
TextBox t = ctrl as TextBox;
if (t != null)
{
t.Text = String.Empty;
}
}
else
{
if (ctrl.Controls.Count > 0)
{
ClearTextBoxes(ctrl);
}
}
}
}
To learn machine learning, you will need to acquire a combination of technical skills and domain knowledge. Here are some of the things yo...
No comments:
Post a Comment