how to loop through a div tag?
I have a div tag where i have a table (somewhat like a datagrid but not a datagrid)...
<div ID=DivItems runat="server"/>
the field itmes in the table are from the database except for the checkboxes...so the table have the following columns: checkbox, USerID, Name, Address, contact number...
So when i clcik the checkbox, i should be selecting that particular row...i have to get the UserID, NAme, Address and COntact number...and put this information in a listbox....So if i have selected all or ticked all the checkboxes, i need to be able to select all the data in the table...and place all this information in a listbox....
So how will i loop through all the rows and get all the items in each rows?
Please i need your help...Thanks
|