Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub IterateThroughChildren(ByVal parent As Control)
Dim c As Control
For Each c In parent.Controls
If c.GetType().ToString().Equals("System.Web.UI.WebControls.Panel") Then
Dim pan As Panel
pan = CType(c, Panel)
If pan.Visible = TRUE Then
''Do Stuff Here
End If
End If
If c.Controls.Count > 0 Then
IterateThroughChildren(c)
End If
Next c
End Sub