示例#1
0
 /* Have we already made a control with this ID? */
 public bool webControlExists(WebControl container, string controlID)
 {
     if (container != null && container.HasControls()) {
         if (container.FindControl(controlID) != null){
      	       return true;
         }
     }
     return false;
 }