Deleting dynamic table rows in .aspx Web forms
I have created a dynamic table in an .aspx Web form with the first column having CheckBoxes in all rows. I would like to delete the row in which the CheckBox is checked when I click a button. How can I do it in ASP.NET?
When you register, you'll begin receiving targeted emails from my team of award-winning writers. Our goal is to provide a unique online resource for developers, architects and development managers tasked with building and maintaining enterprise applications using Visual Basic, C# and the Microsoft .NET platform.
Hannah Smalltree, Editorial Director
By traversing the table rows and cells, you can get to the controls in the cell (i.e. table.Rows[0].Cells[0].Controls collection). You can get a reference to the checkbox and test for its checked property. If it's checked, you can delete the row just by removing it from the Rows collection on the table. If you have references to the checkboxes, you can go the other way around by using checkbox.Parent (which will give you the parent control, which will be the cell, and from there you can get to the row).
Dig Deeper
-
People who read this also read...
This was first published in October 2004