from中一次性清空多个文本框

在from中将多个文本框里的数据添加到数据库后,需要将全部清空代码

1          private   void  bt_cancel_Click( object  sender, EventArgs e)
2          {//清空所有文本框的值
3            for (int i = 0; i < Controls.Count; i++)
4            {
5                if (Controls[i] is TextBox)
6                    Controls[i].Text = "";
7
8            }

9        }

你可能感兴趣的:(文本框)