I just posted code to allow recursive search for a control anywhere on the page. Here is the VB (Visual Basic) version: 1 Public Shared Function FindControl(Of T As Control) _ 2 ( ByVal startingControl As Control, ByVal id As String ) As T 3 Dim found As T = CType ( Nothing , T) 4 Dim controlCount As...