foreach (Control myControl in this.Controls )
{
if (myControl.GetType() == typeof (TextBox ))
{
myControl.Text = "";
}
}
------------------------------------------
遍历页面上所有的控件,只要碰见了TextBox的,就将它的值清空.
======================================================
<input type="reset" value="清空"/>
------------------------------------------
只要学过HTML的都知道.只是一个"重置"按钮罢了
======================================================
我觉得没必要加个panel什么的....呵
{
if (myControl.GetType() == typeof (TextBox ))
{
myControl.Text = "";
}
}
------------------------------------------
遍历页面上所有的控件,只要碰见了TextBox的,就将它的值清空.
======================================================
<input type="reset" value="清空"/>
------------------------------------------
只要学过HTML的都知道.只是一个"重置"按钮罢了
======================================================
我觉得没必要加个panel什么的....呵
飘过~~