Link to home
Start Free TrialLog in
Avatar of Chuck98RT10
Chuck98RT10

asked on

C# find a row by ID and add tablecell to it

The table and rows are already built.
Rows are assigned an ID.
I know what the ID is and want to add(tCell) to a specific row.
How do I reference a specific row so I can add a cell to it?
tCel.text = "howdy";
tRow.Cells.Add(tCel);

Open in new window

Avatar of phead_2
phead_2

This is for a table web control right? How are you assigning the ID to the row?
ASKER CERTIFIED SOLUTION
Avatar of Member_2_4913559
Member_2_4913559
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Chuck98RT10

ASKER

Nevermind. I think I figured it out. Thanks for replying.
Got it. Thanks