I have a page with a table of stuff and I need to allow the user to select rows to process. I\'ve figured out how to add a column of check boxes to the table but I can\'t se
What about using the CheckBoxList control? I have no Visual Studio open now, but as far as I remember it is a DataBound control, providing DataSource
and DataBind()
where you can provide a list at runtime. When the page does a postback you can traverse the list by calling something like myCheckBoxList.Items
and check whether the current item is selected by calling ListItem.Selected
method. This should work.