This is the forum to discuss the Wrox book Professional C#, 3rd Edition by Simon Robinson, Christian Nagel, Karli Watson, Jay Glynn, Morgan Skinner, Bill Evjen; ISBN: 9780764557590
You are currently viewing the BOOK: Professional C#, 2nd and 3rd Editions section of the Wrox Programmer to Programmer discussions. This is a community of tens of thousands of software programmers and website developers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining today you can post your own programming questions, respond to other developers’ questions, and eliminate the ads that are displayed to guests. Registration is fast, simple and absolutely free .
Iam building a dynamic table with 5 cells. The first cell will be a button to be used to select that row. I am not having a problem creating the table row by row. However I can not figure out how to capture the event when the button in cell is pressed.
code sample
----------
TableRow tblRow = new TableRow();
TableCell[] tblCell - new TableCell[5];
tblCell[0] = new TableCell();
tblCell[1] = new TableCell();
..
..
tblCell[4] = new TableCell();