Asp.net/C# Get repeater row data through checkbox
问题 Hello i have a repeater that will present data as a table with checkbox for each row, so i want to show the checked rows data when a button is clicked. .aspx code: <asp:Repeater ID="rptItems" runat="server"> <HeaderTemplate> <table class="table table-bordered table-hover table-responsive table-striped table-condensed"> <tr> <th> </th> <th>Goods Desc</th> <th>Balance Units</th> <th>Exit Units</th> </tr> </HeaderTemplate> <ItemTemplate> <tr> <td><asp:CheckBox ID="cbItem" runat="server" /></td>