xiyurui

路靠自己走,也靠运气. 但能不能抓住运气靠自己的手. 所以.自己的手和自己的脚,是最值得依赖的. 少壮不努力,老大徒伤悲!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

一个任意获得页面控件的方法

Posted on 2006-02-10 11:12  晰雨的天空  阅读(687)  评论(0)    收藏  举报
private Control seachControl(Control it,string id)
 {
            Control oo=null;
            foreach(Control c in it.Controls)
              {
                oo=c.FindControl(id);
               if (oo!=null)
              {
                   
                    break;
               }

               else
                    {
                    if (c.Controls.Count>0)
                   {
                      oo=seachControl(c,id);
                       if (oo!=null)
                            {
                               return oo;
                       }

                  }

               }

    }

    return oo;
       }