How to identify wich checkboxes are checked in a d

rasco11

New Member
I have a datagrid with a template column wich contains a checkbox for each item in the datagrid.<BR>Does anyone knows how can I identify wich checkboxes are checked in the datgrid?<BR><BR>Thanks in advance, amI would use the header and footer of the data grind to start a checkboxlist. The just grab the selected item from the checkbox list. So somthing like this should do it<BR><BR><HeaderTemplate><BR> <asp:ListBox id="Listbox1"><BR></HeaderTemplate><BR><ItemTemplate><BR> <asp:ListItem value=http://aspmessageboard.com/archive/index.php/"value"><BR> Text<BR> </asp:ListItem><BR></ItemTemplate><BR><FooterTemplate><BR> </asp:ListBox><BR></FooterTemplate><BR><BR>Hope that helps<BR><BR>Morgan<BR>
 
Back
Top