allow multiple row selection in gridview

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

On my web form I need to allow the users to select mulitple rows within and then click delete, is there a way to allow for multi row selections and then get each row id so then can delete all the selected rows?
 
lots of ways, depending on the ui you want. you could have checkbox per
row and a delete button. client script could detect a click and fillin a
hidden field, etc.

-- bruce (sqlwork.com)
 
Back
Top