We have this checkbox on gridview:
<ItemTemplate>
<asp:CheckBox ID="chkb" runat="server" onclick = "Check_this(this)" />
</ItemTemplate>
Our users can click to check one box or they can click to check many boxes.
We would like to add another column:
<asp:BoundField ItemStyle-Width = "150px" DataField = "curDate" SortExpression="curDate" HeaderText = "Date Accepted" />
This way, anytime a user checks one or more checkboxes, the date the box was checked is automatically recorded and displayed.
Can you please suggest how I can go about handling this?
Thank you very much.