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

Display Canvasjs Line Chart using Data from Database

Insecure cookie setting: missing Secure flag

Tips for Protecting Your Email Privacy