As described in this link , I can create checkbox list in a asp.net webform page .
I want to display each listItem in different Row of html table , As the user will select some files which are being displayed in Different Rows . Each row has a checkbox with it . The user can select multiple files being displayed in multiple Rows .How can I acheive this ?
Here is my code which need to be replaced with asp:Checkbox:
<td valign=bottom align='center' bgcolor='#DA8191'>
<input type='checkBox' name=chkOnline value='abc'>
<td>
The above code is placed in a loop , so the number of checkbox list items depends upon the file incoming from database .
Thanks in Advance.