Why can't I see my textboxes when iterating through my WebForm??
This code is only picking up HtmlForm and a couple of Literalcontrols.
VB Code:
foreach (Control t in Page.Controls) { if (t is TextBox) { t.DataBind(); } }
I've also tried using 'this.Controls' !!
