有时候我们想 一次清空所有元素的值 在js 里面有脚本 ocument.formname.inputname.value= "
jquery里叶可以用$(.name).value=""
在服务器端就比较复杂一些
protected void BtnExit_Click(object sender, EventArgs e)
{
ResetTextBox(this.Controls);
}
public void ResetTextBox(ControlCollection cc)
{
foreach (Control ctr in cc)
{
if (ctr.HasControls())
{
ResetTextBox(ctr.Controls);
}
if (ctr is TextBox)
{
((TextBox)ctr).Text = string.Empty;
}
}
}