M
Mark Goldin
Anybody around here uses Infragistics controls?
Mark Fitzpatrick said:They're not part of the form. Instead the are part of the WebTab. Let's say
you have a Label control called lblName. To get to it you need to use the
FindControl method of the WebTab control like so:
Label lblName = (Label)WebTab1.FindControl("lblName");
It's basically the same method you would use if you were trying to access
items in a datagrid as the items are being created. You may want to check to
see if the control is not equal to null before you access it.
Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage