You could run a query to get all the record primary keys and create a list of checkboxes in a form using this with names like DeleteRecord1, DeleteRecord2, ... (the 1, 2 etc being the primary key of each record).
Then on the page the form is submitted to, loop through the Request.Form collection and check for any fields that have a name that matches this naming convention & execute a delete query.
HTH,
Chris
|