Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Iterate through ASP.Net Ajax Tab Container ?

1 view
Skip to first unread message

Luqman

unread,
Apr 25, 2008, 5:46:12 PM4/25/08
to
I have a Ajax Tab Container on my Webform with One Panel and some Labels and
Textboxes.

I want to Iterate through all the textboxes and return their IDs.

I tried every possibility I could but I was unable to retrieve their IDs.

Here is my code, which returns nothing.

Dim ctrl as new Control
for each ctrl in me.tabpanel1.controls
if typeof ctrl is textbox then
msgbox(ctype(ctrl,textbox).ID.ToString)
end if
next

Any idea what am I missing ?

Best Regards,

Luqman

Cowboy (Gregory A. Beamer)

unread,
Apr 26, 2008, 10:28:01 AM4/26/08
to
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.

--
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!
|
*************************************************
"Luqman" <pear...@cyber.net.pk> wrote in message
news:u%23FCA5x...@TK2MSFTNGP06.phx.gbl...

Luqman

unread,
Apr 27, 2008, 2:55:42 AM4/27/08
to
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

"Cowboy (Gregory A. Beamer)" <NoSpamM...@comcast.netNoSpamM> wrote in
message news:eh6%239m6pI...@TK2MSFTNGP06.phx.gbl...

0 new messages