| EAPUtilDiagnoseMultipleControlError Method  | 
 
            Recurses through the specified control's Controls collection looking for UniqueID collisions.
            Helpful in diagnosing "Multiple controls with the same ID 'xxx' were found. FindControl requires that controls have unique IDs." 
            errors thrown by the .Net Control.FindControl() method.
            
 
    Namespace: 
   NetQuarry
    Assembly:
   EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
 Syntax
Syntaxpublic static void DiagnoseMultipleControlError(
	Control control
)
Public Shared Sub DiagnoseMultipleControlError ( 
	control As Control
)
Parameters
- control
- Type: System.Web.UIControl
 The control to Diagnose.
 See Also
See Also