Please Help!<BR><BR>I have a project where a user adds records to a database and is then given a list of recent additions on the screen. I use the Data Repeater & Data Binder to display several fields worth of data.<BR><BR>In addition to displaying data, I need to give the user the option to delete one or more records from the database. My current attempt gives the user checkboxes as the first field displayed in my data repeater. Each checkbox is named with the PrimaryKeyID from the database.<BR><BR>My thought was that when a user checked one or more boxes and hit a delete button, I could somehow pass the identities of those records (from the names of the checkboxes) to the server and then delete the records.<BR><BR>Unfortunately, I have not figured out how to a) get my list of selected checkboxes or pass the data back to the server.<BR><BR>Please help!<BR><BR>Anthony<BR><BR>I generate the textbox as string and pass it to the databinder.<BR><BR><BR>Hi Anthony,<BR><BR>See this tutorial on dealing with checkboxes within a control:<BR><BR>http://dotnetjunkies.com/howto/default.aspx?id=25<BR><BR>Basically it sticks in a hidden text field with the value you need right next to each checkbox and then loops through all checked boxes for processing. The example is for a datagrid, but the logic should apply.<BR><BR>Hth,<BR><BR>])ryThank you very much! I will review it and see if I can use it. I really appreciate your help!<BR><BR>Anthony