清空文本框

   /// <summary>
    /// 清空页面文本框
    /// </summary>
    private void cleartxtbox()
    {
        foreach (Control outerControl in this.Controls)
        {
            foreach (Control ctr in outerControl.Controls)
                if (ctr is TextBox)
                {
                    (ctr as TextBox).Text = String.Empty;
                }
        }
    }
posted @ 2008-10-26 11:06  富硒荔枝  阅读(73)  评论(0)    收藏  举报