批量管理 页面空间

有时候我们想 一次清空所有元素的值 在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;
            }
        }
    }

posted @ 2011-04-29 10:58  likunran  阅读(139)  评论(0编辑  收藏  举报