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

Popular posts from this blog

Unable to perform operation on the item is locked in workspace

Insecure cookie setting: missing Secure flag

Display Canvasjs Line Chart using Data from Database