Here's a solution:
Private Sub IterateControls(ByRef ctlParent As Control)
Dim ctlControl As Control
For Each ctlControl In ctlParent.Controls
Select Case ctlControl.GetType.ToString
Case "System.Web.UI.WebControls.TextBox"
Case "System.Web.UI.WebControls.RadioButtonList"
Case "System.Web.UI.WebControls.DropDownList"
End Select
If ctlControl.HasControls Then
IterateControls(ctlControl)
End If
Next
End Sub
Thank you kindly,
Dan Sikorsky BAB, BScE, MSC