asp.net gridview checkbox selection
问题 Need some help to solve this. I have a gridview and inside the gridview I have a checkbox and after clicking the checkbox, I am doing a postback event and trying to update this particular row only on the database. This is my gridview checkbox code. see the OnCheckedChanged. <asp:TemplateField HeaderText="Sample"> <ItemTemplate> <asp:CheckBox runat="server" ID="chkSample" Checked='<%# Bind("Sample") %>' OnCheckedChanged="UpdateSupplyLed" AutoPostBack="True"> </asp:CheckBox> </ItemTemplate> <