- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsHello,
I develop an asp.net 2.0 application with visual studio 2005.
I have a webpage with an asp:table named "t_summary". The table contains rows and cells. Cells contain webcontrols like textboxes or labels.
In the code behind of the page, I could reference a textbox like this t_summary.Rows[0].Cells[1]
But since I added the meta tags to globalize the page (meta:resourcekey="MyTable
the findcontrol method returns null . When I add t_summary.Rows[0].Cells[1]
Someone has an logical explanation ?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: PHDPosted on 2008-06-04 at 06:20:47ID: 21709745
second shot. I hope this new explanation will be more interesting for experts :-)
ells[0].Fi ndControl( "tb_nom")) ; is ok.
I have a simpla aspx page with 1 table. Tha table has 2 rows and each rows has 2 cells. The first cell of the first row containes 1 Textbox.
Without the meta attribute in the parent cell of the text box, TextBox tb = ((TextBox)Table1.Rows[0].C
But
with the meta attribute in the parent cell of the textbox control, tb is always null.
Why ?
Select allOpen in new window