Automatically Clear Html Controls
protected void AllTextBoxClear(Control c)
{
TextBox t = c as TextBox;
if (t != null)
{
string hi = t.Text = "";
}
foreach (Control child in c.Controls)
AllTextBoxClear(child);
}
protected void AllCheckBoxClear(Control c)
{
CheckBox t = c as CheckBox;
if (t != null)
{
t.Checked = false;
}
foreach (Control child in c.Controls)
AllCheckBoxClear(child);
}
Comments
Post a Comment
Thank You for your Comment