Placing an ASP.NET ImageButton inside a TableCell
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, on开发者_如何学运维ly accepting Strings.
How do I add the Imagebutton instance instead?
tableCell.Controls.Add(imageButtonInstance);
精彩评论