views:

12

answers:

1

I'm trying to put an imagebutton in a tablecell, but the only property to add anything to a tablecell I know of, is the Text property. And that's for text, only accepting Strings.

How do I add the Imagebutton instance instead?

+1  A: 
tableCell.Controls.Add(imageButtonInstance);
jimplode