As you iterate look at the names of the controls. You may not be deep
enough. If I am correct, you will have to find the actual panel inside the
tab and iterate through its controls to get deep enough into the hierarchy.

Signature
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA
Subscribe to my blog
http://gregorybeamer.spaces.live.com/lists/feed.rss
or just read it:
http://gregorybeamer.spaces.live.com/
*************************************************
| Think outside the box!
*************************************************
>I have a Ajax Tab Container on my Webform with One Panel and some Labels
>and
[quoted text clipped - 18 lines]
>
> Luqman
Luqman - 27 Apr 2008 07:55 GMT
Hi,
For every control in Tab Panel, it just returns system.web.ui.control type,
why its not returning system.web.ui.textbox ?
You can check with the following code.
Dim ctrl as new Control
for each ctrl in me.tabpanel1.controls
msgbox (ctrl.gettype.tostring)
Next
Best Regards,
Luqman
> As you iterate look at the names of the controls. You may not be deep
> enough. If I am correct, you will have to find the actual panel inside the
[quoted text clipped - 25 lines]
>>
>> Luqman